HomeSort by relevance Sort by last modified time
    Searched refs:Theme (Results 151 - 175 of 243) sorted by null

1 2 3 4 5 67 8 910

  /prebuilts/gradle-plugin/com/android/tools/asset-studio/25.2.0-alpha3/
asset-studio-25.2.0-alpha3.jar 
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 307 setTheme(R.style.Theme);
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockContext.java 84 public Resources.Theme getTheme() {
  /frameworks/base/core/java/android/widget/
QuickContactBadge.java 94 TypedArray styledAttributes = mContext.obtainStyledAttributes(R.styleable.Theme);
Spinner.java 30 import android.content.res.Resources.Theme;
84 * Use the theme-supplied value to select the dropdown mode.
106 * Constructs a new spinner with the given context's theme.
109 * access the current theme, resources, etc.
116 * Constructs a new spinner with the given context's theme and the supplied
121 * access the current theme, resources, etc.
133 * Constructs a new spinner with the given context's theme and the supplied
137 * access the current theme, resources, etc.
145 * Constructs a new spinner with the given context's theme, the supplied
149 * access the current theme, resources, etc
    [all...]
AbsSeekBar.java 138 final TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.Theme, 0, 0);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SwipeDismissLayout.java 133 com.android.internal.R.styleable.Theme);
  /frameworks/base/core/tests/coretests/src/android/content/res/
ResourcesManagerTest.java 188 Resources.Theme theme = resources1.newTheme(); local
189 assertSame(resources1, theme.getResources());
190 theme.applyStyle(android.R.style.Theme_NoTitleBar, false);
193 assertTrue(theme.resolveAttribute(android.R.attr.windowNoTitle, value, true));
200 assertSame(resources1, theme.getResources());
203 assertTrue(theme.resolveAttribute(android.R.attr.windowNoTitle, value, true));
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
SettingsDrawerActivity.java 80 TypedArray theme = getTheme().obtainStyledAttributes(android.R.styleable.Theme); local
81 if (!theme.getBoolean(android.R.styleable.Theme_windowNoTitle, false)) {
92 if (theme.getBoolean(android.R.styleable.Theme_windowNoTitle, false)) {
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
ExpandedAlarmViewHolder.java 69 final Resources.Theme theme = context.getTheme(); local
72 final TypedArray typedArray = theme.obtainStyledAttributes(attrs);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableTest.java 19 import android.content.res.Resources.Theme;
317 Theme theme = mResources.newTheme(); local
318 theme.applyStyle(R.style.Theme_ThemedDrawableTest, true);
319 Drawable drawable = Drawable.createFromXml(mResources, parser, theme);
322 Drawable expected = mResources.getDrawable(R.drawable.gradientdrawable_theme, theme);
347 Theme theme = mResources.newTheme(); local
348 theme.applyStyle(R.style.Theme_ThemedDrawableTest, true);
349 Drawable drawable = Drawable.createFromXmlInner(mResources, parser, attrs, theme);
    [all...]
NinePatchDrawableTest.java 19 import android.content.res.Resources.Theme;
444 // Ensure theme density is applied correctly. Unlike most
449 final Theme t = res.newTheme();
540 // Ensure theme density is applied correctly. Unlike most
545 final Theme t = res.newTheme();
BitmapDrawableTest.java 19 import android.content.res.Resources.Theme;
566 // Ensure theme density is applied correctly. Unlike most
571 final Theme t = res.newTheme();
  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 23 import android.content.res.Resources.Theme;
726 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme)
728 super.inflate(r, parser, attrs, theme);
730 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.BitmapDrawable);
745 // If we're not waiting on a theme, verify required attributes.
764 // Extract the theme attributes, if any.
826 public void applyTheme(Theme t) {
845 // Apply theme to contained color state list.
    [all...]
DrawableContainer.java 23 import android.content.res.Resources.Theme;
610 public void applyTheme(Theme theme) {
611 mDrawableContainerState.applyTheme(theme);
941 final void applyTheme(Theme theme) {
942 if (theme != null) {
949 drawables[i].applyTheme(theme);
956 updateDensity(theme.getResources());
    [all...]
GradientDrawable.java 26 import android.content.res.Resources.Theme;
    [all...]
LayerDrawable.java 24 import android.content.res.Resources.Theme;
171 @NonNull AttributeSet attrs, @Nullable Theme theme)
173 super.inflate(r, parser, attrs, theme);
185 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.LayerDrawable);
196 inflateLayers(r, parser, attrs, theme);
203 public void applyTheme(@NonNull Theme t) {
248 @NonNull AttributeSet attrs, @Nullable Theme theme)
266 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.LayerDrawableItem)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatDrawableManager.java 68 @NonNull AttributeSet attrs, @Nullable Resources.Theme theme);
705 @NonNull AttributeSet attrs, @Nullable Resources.Theme theme) {
708 .createFromXmlInner(context.getResources(), parser, attrs, theme);
719 @NonNull AttributeSet attrs, @Nullable Resources.Theme theme) {
722 .createFromXmlInner(context, context.getResources(), parser, attrs, theme);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDelegateImplV7.java 200 "windowActionBar to false in your theme to use a Toolbar instead.");
344 "You need to use a Theme.AppCompat theme (or descendant) with this activity.");
379 * This needs some explanation. As we can not use the android:theme attribute
459 "AppCompat does not support the current theme features: { "
736 // Use the action bar theme.
738 final Resources.Theme baseTheme = mContext.getTheme();
743 final Resources.Theme actionBarTheme = mContext.getResources().newTheme();
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
SuggestionsPopupWindowTest.java 266 getActivity().obtainStyledAttributes(com.android.internal.R.styleable.Theme);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationGuts.java 106 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.Theme, 0, 0);
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /developers/build/lib/
assetstudio.jar 
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
VectorDrawable_Delegate.java 24 import android.content.res.Resources.Theme;
74 * Obtains styled attributes from the theme, if available, or unstyled resources if the theme is
78 Resources res, Theme theme, AttributeSet set, int[] attrs) {
79 if (theme == null) {
82 return theme.obtainStyledAttributes(set, attrs, 0, 0);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 60 import android.content.res.Resources.Theme;
135 private Resources.Theme mTheme;
501 public Theme getTheme() {
737 // look for the style in the current theme, and its parent:
757 "Failed to find style '%s' in current theme",
802 "Failed to find style with id 0x%x in current theme",
    [all...]

Completed in 1633 milliseconds

1 2 3 4 5 67 8 910