HomeSort by relevance Sort by last modified time
    Searched defs:KeyboardTheme (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardTheme.java 29 public final class KeyboardTheme implements Comparable<KeyboardTheme> {
30 private static final String TAG = KeyboardTheme.class.getSimpleName();
35 // These should be aligned with Keyboard.themeId and Keyboard.Case.keyboardTheme
43 private static final KeyboardTheme[] KEYBOARD_THEMES = {
44 new KeyboardTheme(THEME_ID_ICS, "ICS", R.style.KeyboardTheme_ICS,
47 new KeyboardTheme(THEME_ID_KLP, "KLP", R.style.KeyboardTheme_KLP,
50 new KeyboardTheme(THEME_ID_LXX_LIGHT, "LXXLight", R.style.KeyboardTheme_LXX_Light,
53 new KeyboardTheme(THEME_ID_LXX_DARK, "LXXDark", R.style.KeyboardTheme_LXX_Dark,
69 private KeyboardTheme(final int themeId, final String themeName, final int styleId
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
ThemeSettingsFragment.java 26 import com.android.inputmethod.keyboard.KeyboardTheme;
50 final KeyboardTheme keyboardTheme = KeyboardTheme.getKeyboardTheme(prefs);
51 final String keyboardThemeId = String.valueOf(keyboardTheme.mThemeId);
77 final KeyboardTheme keyboardTheme = KeyboardTheme.getKeyboardTheme(prefs);
78 mSelectedThemeId = String.valueOf(keyboardTheme.mThemeId);
99 KeyboardTheme.saveKeyboardThemeId(mSelectedThemeId, getSharedPreferences())
    [all...]

Completed in 58 milliseconds