Home | History | Annotate | Download | only in keyboard

Lines Matching refs:theme

48                 // Default theme for ICS, JB, and KLP.
51 // Default theme for LXX.
98 for (final KeyboardTheme theme : KEYBOARD_THEMES) {
99 if (theme.mThemeId == themeId) {
100 return theme;
114 final KeyboardTheme theme = searchKeyboardThemeById(themeId);
115 if (theme != null) {
116 return theme;
118 Log.w(TAG, "Unknown keyboard theme in KLP preference: " + klpThemeIdString);
120 Log.w(TAG, "Illegal keyboard theme in KLP preference: " + klpThemeIdString, e);
124 Log.i(TAG, "Remove KLP keyboard theme preference: " + klpThemeIdString);
128 for (final KeyboardTheme theme : KEYBOARD_THEMES) {
129 if (sdkVersion >= theme.mMinApiVersion) {
130 return theme;
137 final KeyboardTheme theme = searchKeyboardThemeById(themeId);
138 return theme.mThemeName;
173 final KeyboardTheme theme = searchKeyboardThemeById(themeId);
174 if (theme != null) {
175 return theme;
177 Log.w(TAG, "Unknown keyboard theme in LXX preference: " + lxxThemeIdString);
179 Log.w(TAG, "Illegal keyboard theme in LXX preference: " + lxxThemeIdString, e);
181 // Remove preference that contains unknown or illegal theme id.