OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:themeId
(Results
1 - 4
of
4
) sorted by null
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
CameraActivity.java
27
int
themeId
= this.getIntent().getExtras().getInt("theme");
28
this.setTheme(
themeId
);
/cts/tests/tests/theme/src/android/theme/cts/
DeviceDefaultTest.java
116
private void assertActionBar(int
themeId
) {
117
assertGetActionBar(
themeId
, true);
120
private void assertNoActionBar(int
themeId
) {
121
assertGetActionBar(
themeId
, false);
124
private void assertGetActionBar(int
themeId
, boolean actionBar) {
125
Activity activity = startActivity(
themeId
);
137
private void assertActionBarWhenLarge(int
themeId
) {
138
Activity activity = startActivity(
themeId
);
141
assertNoActionBar(
themeId
);
143
assertActionBar(
themeId
);
[
all
...]
DeviceDefaultActivity.java
28
public static final String EXTRA_THEME_ID = "
themeId
";
37
int
themeId
= getIntent().getIntExtra(EXTRA_THEME_ID, -1);
38
setTheme(
themeId
);
/cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java
308
private boolean runCapture(int
themeId
, int layoutId, String imageName) throws Exception {
310
sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_THEME,
themeId
));
Completed in 364 milliseconds