HomeSort by relevance Sort by last modified time
    Searched defs:mThemeId (Results 1 - 10 of 10) 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/
Keyboard.java 55 public final int mThemeId;
105 mThemeId = params.mThemeId;
133 mThemeId = keyboard.mThemeId;
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) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardParams.java 35 public int mThemeId;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatActivity.java 68 private int mThemeId = 0;
77 if (delegate.applyDayNight() && mThemeId != 0) {
83 onApplyThemeResource(getTheme(), mThemeId, false);
85 setTheme(mThemeId);
95 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;
426 if (mThemeId != 0) {
427 context = new ContextThemeWrapper(context, mThemeId);
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 267 milliseconds