HomeSort by relevance Sort by last modified time
    Searched refs:mThemeId (Results 1 - 12 of 12) sorted by null

  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 12 private int mThemeId = 0;
22 mThemeId = extras.getInt("theme");
25 mThemeId = savedInstanceState.getInt("theme");
28 if (mThemeId != 0) {
29 setTheme(mThemeId);
46 outState.putInt("theme", mThemeId);
MainActivity.java 60 private int mThemeId = -1;
70 mThemeId = savedInstanceState.getInt("theme");
71 this.setTheme(mThemeId);
118 intent.putExtra("theme", mThemeId);
127 if (mThemeId == R.style.AppTheme_Dark) {
128 mThemeId = R.style.AppTheme_Light;
130 mThemeId = R.style.AppTheme_Dark;
316 outState.putInt("theme", mThemeId);
331 intent.putExtra("theme", mThemeId);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
ThemeSettingsFragment.java 37 final int mThemeId;
42 mThemeId = id;
53 if (keyboardTheme.mThemeId == keyboardThemeIds[index]) {
76 mSelectedThemeId = keyboardTheme.mThemeId;
83 mSelectedThemeId = pref.mThemeId;
107 final boolean selected = (mSelectedThemeId == pref.mThemeId);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardTheme.java 69 public final int mThemeId;
78 mThemeId = themeId;
94 return (o instanceof KeyboardTheme) && ((KeyboardTheme)o).mThemeId == mThemeId;
99 return mThemeId;
107 if (theme.mThemeId == themeId) {
Keyboard.java 55 public final int mThemeId;
105 mThemeId = params.mThemeId;
133 mThemeId = keyboard.mThemeId;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatActivity.java 65 private int mThemeId = 0;
73 if (delegate.applyDayNight() && mThemeId != 0) {
79 onApplyThemeResource(getTheme(), mThemeId, false);
81 setTheme(mThemeId);
91 mThemeId = resid;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
AbstractMediaItemPresenter.java 91 private int mThemeId;
108 mThemeId = themeId;
118 mThemeId = themeId;
129 return mThemeId;
427 if (mThemeId != 0) {
428 context = new ContextThemeWrapper(context, mThemeId);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardThemeTests.java 84 assertEquals(expectedThemeId, actualTheme.mThemeId);
150 assertEquals(expectedThemeId, defaultTheme.mThemeId);
205 assertEquals(expectedThemeId, theme.mThemeId);
399 assertEquals(THEME_ID_KLP, actualTheme.mThemeId);
414 assertEquals(THEME_ID_KLP, actualTheme.mThemeId);
429 assertEquals(THEME_ID_KLP, actualTheme.mThemeId);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardParams.java 35 public int mThemeId;
KeyboardBuilder.java 282 params.mThemeId = keyboardAttr.getInt(R.styleable.Keyboard_themeId, 0);
652 R.styleable.Keyboard_Case_keyboardTheme, mParams.mThemeId,
653 KeyboardTheme.getKeyboardThemeName(mParams.mThemeId));
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat-nodeps.jar 
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 239 milliseconds