OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:KeyboardTheme
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
ThemeSettingsFragment.java
25
import com.android.inputmethod.keyboard.
KeyboardTheme
;
49
final
KeyboardTheme
keyboardTheme
=
KeyboardTheme
.getKeyboardTheme(context);
53
if (
keyboardTheme
.mThemeId == keyboardThemeIds[index]) {
75
final
KeyboardTheme
keyboardTheme
=
KeyboardTheme
.getKeyboardTheme(context);
76
mSelectedThemeId =
keyboardTheme
.mThemeId;
97
KeyboardTheme
.saveKeyboardThemeId(mSelectedThemeId, getSharedPreferences())
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardTheme.java
32
public final class
KeyboardTheme
implements Comparable<
KeyboardTheme
> {
33
private static final String TAG =
KeyboardTheme
.class.getSimpleName();
38
// These should be aligned with Keyboard.themeId and Keyboard.Case.
keyboardTheme
46
private static
KeyboardTheme
[] AVAILABLE_KEYBOARD_THEMES;
49
static final
KeyboardTheme
[] KEYBOARD_THEMES = {
50
new
KeyboardTheme
(THEME_ID_ICS, "ICS", R.style.KeyboardTheme_ICS,
53
new
KeyboardTheme
(THEME_ID_KLP, "KLP", R.style.KeyboardTheme_KLP,
56
new
KeyboardTheme
(THEME_ID_LXX_LIGHT, "LXXLight", R.style.KeyboardTheme_LXX_Light,
59
new
KeyboardTheme
(THEME_ID_LXX_DARK, "LXXDark", R.style.KeyboardTheme_LXX_Dark
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardThemeTests.java
19
import static com.android.inputmethod.keyboard.
KeyboardTheme
.THEME_ID_ICS;
20
import static com.android.inputmethod.keyboard.
KeyboardTheme
.THEME_ID_KLP;
21
import static com.android.inputmethod.keyboard.
KeyboardTheme
.THEME_ID_LXX_DARK;
22
import static com.android.inputmethod.keyboard.
KeyboardTheme
.THEME_ID_LXX_LIGHT;
82
final
KeyboardTheme
actualTheme =
KeyboardTheme
.getKeyboardTheme(
83
mPrefs, sdkVersion,
KeyboardTheme
.KEYBOARD_THEMES);
94
setKeyboardThemePreference(
KeyboardTheme
.KLP_KEYBOARD_THEME_KEY, THEME_ID_NULL);
95
setKeyboardThemePreference(
KeyboardTheme
.LXX_KEYBOARD_THEME_KEY, THEME_ID_NULL);
97
final String prefKey =
KeyboardTheme
.getPreferenceKey(sdkVersion)
[
all
...]
Completed in 81 milliseconds