HomeSort by relevance Sort by last modified time
    Searched refs:themeIndex (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/holo/src/android/holo/cts/
SingleThemeLayoutIterator.java 31 SingleThemeLayoutIterator(int themeIndex, int layoutIndex, int task) {
32 mThemeIndex = themeIndex;
SingleThemeIterator.java 34 SingleThemeIterator(int themeIndex, int task) {
36 mThemeIndex = themeIndex;
ThemeTestActivity.java 41 static final String EXTRA_THEME_INDEX = "themeIndex";
83 int themeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
86 Log.i(TAG, "Theme index: " + themeIndex + " Layout index: " + layoutIndex);
88 if (themeIndex < 0 && layoutIndex < 0) {
90 } else if (themeIndex >= 0 && layoutIndex >= 0) {
91 mIterator = new SingleThemeLayoutIterator(themeIndex, layoutIndex, task);
94 } else if (themeIndex >= 0) {
95 mIterator = new SingleThemeIterator(themeIndex, task);
HoloTest.java 130 private void runThemeTest(int themeIndex) throws Exception {
133 intent.putExtra(ThemeTestActivity.EXTRA_THEME_INDEX, themeIndex);
LayoutTestActivity.java 46 static final String EXTRA_THEME_INDEX = "themeIndex";
64 int themeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
71 ThemeInfo themeInfo = themeAdapter.getItem(themeIndex);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 184 final int themeIndex = Integer.valueOf(themeId);
185 if (themeIndex >= 0 && themeIndex < KEYBOARD_THEMES.length)
186 return themeIndex;
194 private void setContextThemeWrapper(Context context, int themeIndex) {
195 if (mThemeIndex != themeIndex) {
196 mThemeIndex = themeIndex;
197 mThemeContext = new ContextThemeWrapper(context, KEYBOARD_THEMES[themeIndex]);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java     [all...]

Completed in 228 milliseconds