OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
89
mThemeId
= params.
mThemeId
;
116
mThemeId
= keyboard.
mThemeId
;
KeyboardSwitcher.java
48
public final int
mThemeId
;
54
mThemeId
= themeId;
139
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
277
params.
mThemeId
= keyboardAttr.getInt(R.styleable.Keyboard_themeId, 0);
[
all
...]
Completed in 43 milliseconds