Searched defs:getColorStateList (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/v4/api23/android/support/v4/content/
H A DContextCompatApi23.java26 public static ColorStateList getColorStateList(Context context, int id) { method in class:ContextCompatApi23
27 return context.getColorStateList(id);
/frameworks/support/v4/java/android/support/v4/content/
H A DContextCompat.java341 public static final ColorStateList getColorStateList(Context context, int id) { method in class:ContextCompat
344 return ContextCompatApi23.getColorStateList(context, id);
346 return context.getResources().getColorStateList(id);
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java474 public ColorStateList getColorStateList(int index) { method in class:TypedArray
H A DResources.java1001 * @deprecated Use {@link #getColorStateList(int, Theme)} instead.
1005 public ColorStateList getColorStateList(@ColorRes int id) throws NotFoundException { method in class:Resources
1006 final ColorStateList csl = getColorStateList(id, null);
1010 + "Resources.getColorStateList(int, Theme) or "
1011 + "Context.getColorStateList(int).", new RuntimeException());
1035 public ColorStateList getColorStateList(@ColorRes int id, @Nullable Theme theme) method in class:Resources
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java137 public ColorStateList getColorStateList(int id) throws NotFoundException { method in class:MockResources
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java297 ColorStateList colorStateList = ResourceHelper.getColorStateList(
316 public ColorStateList getColorStateList(int index) { method in class:BridgeTypedArray
H A DBridgeResources.java200 // Suppress possible NPE. getColorStateList will never return null, it will instead
203 return getColorStateList(id, theme).getDefaultColor();
207 public ColorStateList getColorStateList(int id, Theme theme) throws NotFoundException { method in class:BridgeResources
211 ColorStateList stateList = ResourceHelper.getColorStateList(resValue.getSecond(),
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java122 public static ColorStateList getColorStateList(ResourceValue resValue, BridgeContext context) { method in class:ResourceHelper
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintTypedArray.java122 public ColorStateList getColorStateList(int index) { method in class:TintTypedArray
123 return mWrapped.getColorStateList(index);
H A DResourcesWrapper.java160 public ColorStateList getColorStateList(int id) throws NotFoundException { method in class:ResourcesWrapper
161 return mResources.getColorStateList(id);
/frameworks/base/core/java/android/content/
H A DContext.java474 public final ColorStateList getColorStateList(int id) { method in class:Context
475 return getResources().getColorStateList(id, getTheme());

Completed in 365 milliseconds