forked from recloudstream/cloudstream
parent
34b3d1ae9e
commit
9e157a8a12
1 changed files with 21 additions and 21 deletions
|
@ -426,6 +426,27 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener {
|
||||||
app.initClient(this)
|
app.initClient(this)
|
||||||
val settingsManager = PreferenceManager.getDefaultSharedPreferences(this)
|
val settingsManager = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
|
||||||
|
loadThemes(this)
|
||||||
|
updateLocale()
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
try {
|
||||||
|
if (isCastApiAvailable()) {
|
||||||
|
mSessionManager = CastContext.getSharedInstance(this).sessionManager
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
logError(e)
|
||||||
|
}
|
||||||
|
|
||||||
|
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN)
|
||||||
|
|
||||||
|
if (isTvSettings()) {
|
||||||
|
setContentView(R.layout.activity_main_tv)
|
||||||
|
} else {
|
||||||
|
setContentView(R.layout.activity_main)
|
||||||
|
}
|
||||||
|
|
||||||
|
changeStatusBarState(isEmulatorSettings())
|
||||||
|
|
||||||
if (settingsManager.getBoolean(getString(R.string.auto_update_plugins_key), true)) {
|
if (settingsManager.getBoolean(getString(R.string.auto_update_plugins_key), true)) {
|
||||||
PluginManager.updateAllOnlinePluginsAndLoadThem(this)
|
PluginManager.updateAllOnlinePluginsAndLoadThem(this)
|
||||||
} else {
|
} else {
|
||||||
|
@ -485,27 +506,6 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener {
|
||||||
logError(e)
|
logError(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
loadThemes(this)
|
|
||||||
updateLocale()
|
|
||||||
super.onCreate(savedInstanceState)
|
|
||||||
try {
|
|
||||||
if (isCastApiAvailable()) {
|
|
||||||
mSessionManager = CastContext.getSharedInstance(this).sessionManager
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
|
||||||
logError(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN)
|
|
||||||
|
|
||||||
if (isTvSettings()) {
|
|
||||||
setContentView(R.layout.activity_main_tv)
|
|
||||||
} else {
|
|
||||||
setContentView(R.layout.activity_main)
|
|
||||||
}
|
|
||||||
|
|
||||||
changeStatusBarState(isEmulatorSettings())
|
|
||||||
|
|
||||||
// val navView: BottomNavigationView = findViewById(R.id.nav_view)
|
// val navView: BottomNavigationView = findViewById(R.id.nav_view)
|
||||||
setUpBackup()
|
setUpBackup()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue