Twidere-App-Android-Twitter.../twidere/src/main/kotlin/org/mariotaku/twidere/fragment/SettingsDetailsFragment.kt

91 lines
3.2 KiB
Kotlin
Raw Normal View History

2016-07-06 15:21:34 +02:00
/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2014 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.mariotaku.twidere.fragment
import android.content.SharedPreferences
import android.content.SharedPreferences.OnSharedPreferenceChangeListener
import android.os.Bundle
import android.support.v7.preference.PreferenceScreen
import org.mariotaku.twidere.Constants.*
import org.mariotaku.twidere.activity.SettingsActivity
import org.mariotaku.twidere.util.Utils
class SettingsDetailsFragment : BasePreferenceFragment(), OnSharedPreferenceChangeListener {
2016-07-08 06:46:54 +02:00
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
2016-07-06 15:21:34 +02:00
val preferenceManager = preferenceManager
preferenceManager.sharedPreferencesName = SHARED_PREFERENCES_NAME
val defaultScreen = preferenceScreen
val preferenceScreen: PreferenceScreen
if (defaultScreen != null) {
defaultScreen.removeAll()
preferenceScreen = defaultScreen
} else {
preferenceScreen = preferenceManager.createPreferenceScreen(activity)
}
setPreferenceScreen(preferenceScreen)
val args = arguments
val rawResId = args.get(EXTRA_RESID)
val resId: Int
if (rawResId is Int) {
resId = rawResId
} else if (rawResId is String) {
resId = Utils.getResId(activity, rawResId)
} else {
resId = 0
}
if (resId != 0) {
addPreferencesFromResource(resId)
}
}
override fun onStart() {
super.onStart()
val preferences = preferenceManager.sharedPreferences
preferences.registerOnSharedPreferenceChangeListener(this)
}
override fun onStop() {
val preferences = preferenceManager.sharedPreferences
preferences.unregisterOnSharedPreferenceChangeListener(this)
super.onStop()
}
override fun onSharedPreferenceChanged(preferences: SharedPreferences, key: String) {
val preference = findPreference(key) ?: return
val extras = preference.extras
if (extras != null) {
val activity = activity
2016-07-26 09:12:25 +02:00
if (extras.containsKey(EXTRA_SHOULD_RESTART)) {
SettingsActivity.setShouldRestart(activity)
} else if (extras.containsKey(EXTRA_SHOULD_RECREATE)) {
SettingsActivity.setShouldRecreate(activity)
2016-07-06 15:21:34 +02:00
}
2016-07-26 09:12:25 +02:00
if (extras.containsKey(EXTRA_RECREATE_ACTIVITY)) {
2016-07-06 15:21:34 +02:00
activity.recreate()
}
}
}
}