abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/SettingsActivity.java
blob: 04fe501bb79d5a70ab627d49bd08af7c21dfdf90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package juloo.keyboard2;

import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.os.Build;
import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.preference.PreferenceManager;

public class SettingsActivity extends PreferenceActivity
{
  @Override
  public void onCreate(Bundle savedInstanceState)
  {
    detectSystemTheme();
    super.onCreate(savedInstanceState);
    SharedPreferences prefs;
    // The preferences can't be read when in direct-boot mode. Avoid crashing
    // and don't allow changing the settings.
    try { prefs = PreferenceManager.getDefaultSharedPreferences(this); }
    catch (Exception _e) { fallbackEncrypted(); return; }
    addPreferencesFromResource(R.xml.settings);
    prefs.registerOnSharedPreferenceChangeListener(this.new OnPreferencesChange());
  }

  /** The default theme is [Theme.DeviceDefault], which is dark. Detect if the
      system is using light theme. */
  void detectSystemTheme()
  {
    if (Build.VERSION.SDK_INT >= 14)
    {
      int ui_mode = getResources().getConfiguration().uiMode;
      if ((ui_mode & Configuration.UI_MODE_NIGHT_NO) != 0)
        setTheme(android.R.style.Theme_DeviceDefault_Light);
    }
  }

  void fallbackEncrypted()
  {
    // Can't communicate with the user here.
    finish();
  }

  /** See DirectBootAwarePreferences. */
  class OnPreferencesChange implements SharedPreferences.OnSharedPreferenceChangeListener
  {
    @Override
    public void onSharedPreferenceChanged(SharedPreferences prefs, String _key)
    {
      DirectBootAwarePreferences
        .copy_preferences_to_protected_storage(SettingsActivity.this, prefs);
    }
  }
}