HomeSort by relevance Sort by last modified time
    Searched refs:mThemeId (Results 1 - 6 of 6) 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/keyboard/
Keyboard.java 47 public final int mThemeId;
84 mThemeId = params.mThemeId;
KeyboardSwitcher.java 51 public final int mThemeId;
57 mThemeId = themeId;
133 if (mThemeContext == null || mKeyboardTheme.mThemeId != keyboardTheme.mThemeId) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardParams.java 31 public int mThemeId;
KeyboardBuilder.java 275 params.mThemeId = keyboardAttr.getInt(R.styleable.Keyboard_themeId, 0);
    [all...]

Completed in 45 milliseconds