OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:themeId
(Results
1 - 8
of
8
) 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
115
private void assertActionBar(int
themeId
) {
116
assertGetActionBar(
themeId
, true);
119
private void assertNoActionBar(int
themeId
) {
120
assertGetActionBar(
themeId
, false);
123
private void assertGetActionBar(int
themeId
, boolean actionBar) {
124
Activity activity = startActivity(
themeId
);
132
private void assertActionBarWhenLarge(int
themeId
) {
133
Activity activity = startActivity(
themeId
);
136
assertNoActionBar(
themeId
);
138
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
);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDialog.java
33
private int
themeId
;
64
public void __constructor__(Context context, int
themeId
) {
66
this.
themeId
=
themeId
;
225
return
themeId
;
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java
528
* @param
themeId
The theme id
532
String
themeId
) {
540
intent.putExtra(PARAM_THEME,
themeId
);
555
* @param
themeId
The theme id
559
long durationMs, String
themeId
) {
568
intent.putExtra(PARAM_THEME,
themeId
);
599
* @param
themeId
The theme id
602
String mediaItemId, String afterMediaItemId, String
themeId
) {
608
intent.putExtra(PARAM_THEME,
themeId
);
619
* @param
themeId
The theme i
[
all
...]
VideoEditorProject.java
[
all
...]
/cts/hostsidetests/holo/src/android/holo/cts/
HoloHostTest.java
216
private boolean runCapture(int
themeId
, int layoutId) throws Exception {
218
sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_THEME,
themeId
));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java
51
// Note: The
themeId
should be aligned with "
themeId
" attribute of Keyboard style
53
public KeyboardTheme(final int
themeId
, final int styleId) {
54
mThemeId =
themeId
;
Completed in 456 milliseconds