Unexpected-Keyboard/srcs/juloo.keyboard2/SettingsActivity.java

42 lines
1.1 KiB
Java
Raw Normal View History

2015-08-08 16:47:22 +02:00
package juloo.keyboard2;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.os.Build;
2015-08-08 16:47:22 +02:00
import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.preference.PreferenceManager;
2015-08-08 16:47:22 +02:00
public class SettingsActivity extends PreferenceActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
// The preferences can't be read when in direct-boot mode. Avoid crashing
// and don't allow changing the settings.
// Run the config migration on this prefs as it might be different from the
// one used by the keyboard, which have been migrated.
try
{
Config.migrate(getPreferenceManager().getSharedPreferences());
}
catch (Exception _e) { fallbackEncrypted(); return; }
addPreferencesFromResource(R.xml.settings);
}
void fallbackEncrypted()
{
// Can't communicate with the user here.
finish();
}
protected void onStop()
{
DirectBootAwarePreferences
.copy_preferences_to_protected_storage(this,
getPreferenceManager().getSharedPreferences());
super.onStop();
}
2015-08-08 16:47:22 +02:00
}