HomeSort by relevance Sort by last modified time
    Searched defs:getTheme (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/view/animation/
AnticipateInterpolator.java 51 this(context.getResources(), context.getTheme(), attrs);
CycleInterpolator.java 42 this(context.getResources(), context.getTheme(), attrs);
OvershootInterpolator.java 52 this(context.getResources(), context.getTheme(), attrs);
AccelerateInterpolator.java 59 this(context.getResources(), context.getTheme(), attrs);
AnticipateOvershootInterpolator.java 68 this(context.getResources(), context.getTheme(), attrs);
DecelerateInterpolator.java 52 this(context.getResources(), context.getTheme(), attrs);
PathInterpolator.java 89 this(context.getResources(), context.getTheme(), attrs);
  /packages/apps/Settings/src/com/android/settings/
SetupWizardUtils.java 36 public static int getTheme(Intent intent) {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
ContextThemeWrapper.java 60 public Resources.Theme getTheme() {
85 * Called by {@link #setTheme} and {@link #getTheme} to apply a theme
103 Resources.Theme theme = getBaseContext().getTheme();
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 104 @Override public Resources.Theme getTheme() {
127 * Called by {@link #setTheme} and {@link #getTheme} to apply a theme
145 Resources.Theme theme = getBaseContext().getTheme();
  /frameworks/base/core/tests/coretests/src/android/widget/
ListViewTest.java 101 public Resources.Theme getTheme() {
102 return getInstrumentation().getTargetContext().getTheme();
  /cts/tests/tests/view/src/android/view/cts/
ContextThemeWrapperTest.java 50 new ContextThemeWrapper(getContext(), getContext().getTheme());
60 contextThemeWrapper.getTheme().obtainStyledAttributes(R.styleable.TextAppearance);
71 contextThemeWrapper.getTheme();
110 expected.setTo(getContext().getTheme());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContext.java 60 abstract public Resources.Theme getTheme();
65 return getTheme().obtainStyledAttributes(attrs);
71 return getTheme().obtainStyledAttributes(resid, attrs);
77 return getTheme().obtainStyledAttributes(set, attrs, 0, 0);
83 return getTheme().obtainStyledAttributes(
ShadowContextWrapper.java 52 public Resources.Theme getTheme() {
  /packages/apps/Email/tests/src/com/android/email/
DBTestHelper.java 201 public Theme getTheme() {
202 return mRealContext.getTheme();
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockContext.java 84 public Resources.Theme getTheme() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ThemeMenuAction.java 96 String currentTheme = configuration.getTheme();
188 String theme = attributes.getTheme();
203 if (info.getTheme() != null) {
205 allThemes.add(info.getTheme());
210 String current = configuration.getTheme();
282 String current = mConfigChooser.getConfiguration().getTheme();
289 return theme.equals(mConfigChooser.getConfiguration().getTheme());
ConfigurationChooser.java 438 String theme = mConfiguration.getTheme();
622 selectTheme(configuration.getTheme());
640 selectTheme(configuration.getTheme());
653 if (!equal(oldConfiguration.getTheme(), mConfiguration.getTheme())) {
    [all...]
NestedConfiguration.java 163 public String getTheme() {
166 return mParent.getTheme();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfoTest.java 117 assertNull(map.get("com.android.unittest.prefs.PrefsActivity").getTheme());
119 map.get("com.android.unittest.app.IntroActivity").getTheme());
152 assertNull(map.get("com.android.unittest.prefs.PrefsActivity").getTheme());
154 map.get("com.android.unittest.app.IntroActivity").getTheme());
  /frameworks/base/core/java/android/app/
DialogFragment.java 310 public int getTheme() {
449 return new Dialog(getActivity(), getTheme());
  /frameworks/base/test-runner/src/android/test/mock/
MockContext.java 97 public Resources.Theme getTheme() {
  /frameworks/support/v4/java/android/support/v4/app/
DialogFragment.java 211 public int getTheme() {
358 return new Dialog(getActivity(), getTheme());
  /frameworks/base/core/java/android/content/
ContextWrapper.java 122 public Resources.Theme getTheme() {
123 return mBase.getTheme();
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
ToolbarActionBar.java 522 widgetTheme.setTo(context.getTheme());
539 context.getTheme().setTo(widgetTheme);

Completed in 936 milliseconds

1 2 3 4 5 6 7 8 910