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

1 2 3

  /frameworks/base/core/java/android/content/res/
CompatResources.java 61 public ColorStateList getColorStateList(@ColorRes int id) throws NotFoundException {
62 return getColorStateList(id, getTheme());
TypedArray.java 530 public ColorStateList getColorStateList(@StyleableRes int index) {
    [all...]
Resources.java     [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
IconUtils.java 58 icon.setTintList(context.getColorStateList(tintColorId));
  /frameworks/support/compat/java/android/support/v4/content/res/
ResourcesCompat.java 151 * calls through to {@link Resources#getColorStateList(int)}.
166 public static ColorStateList getColorStateList(@NonNull Resources res, @ColorRes int id,
169 return res.getColorStateList(id, theme);
171 return res.getColorStateList(id);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
UserAvatarView.java 59 setFrameColor(a.getColorStateList(attr));
  /frameworks/base/test-runner/src/android/test/mock/
MockResources.java 142 public ColorStateList getColorStateList(int id) throws NotFoundException {
  /frameworks/support/compat/java/android/support/v4/content/
ContextCompat.java 385 public static final ColorStateList getColorStateList(Context context, @ColorRes int id) {
387 return context.getColorStateList(id);
389 return context.getResources().getColorStateList(id);
  /frameworks/support/v7/appcompat/src/android/support/v7/content/res/
AppCompatResources.java 62 public static ColorStateList getColorStateList(@NonNull Context context, @ColorRes int resId) {
65 return context.getColorStateList(resId);
82 return ContextCompat.getColorStateList(context, resId);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
SettingsShadowResources.java 92 public ColorStateList getColorStateList(@ColorRes int id, @Nullable Theme theme)
97 return directlyOn(realResources, Resources.class).getColorStateList(id, theme);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 242 public static ColorStateList getColorStateList(@NonNull ResourceValue resValue,
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ResourcesWrapper.java 161 public ColorStateList getColorStateList(int id) throws NotFoundException {
162 return mResources.getColorStateList(id);
TintTypedArray.java 166 public ColorStateList getColorStateList(int index) {
171 AppCompatResources.getColorStateList(mContext, resourceId);
177 return mWrapped.getColorStateList(index);
  /frameworks/layoutlib/bridge/src/android/content/res/
BridgeTypedArray.java 300 ColorStateList colorStateList = ResourceHelper.getColorStateList(
310 public ColorStateList getColorStateList(int index) {
315 return ResourceHelper.getColorStateList(mResourceData[index], mContext, mTheme);
    [all...]
Resources_Delegate.java 244 // Suppress possible NPE. getColorStateList will never return null, it will instead
247 return getColorStateList(resources, id, theme).getDefaultColor();
251 static ColorStateList getColorStateList(Resources resources, int id) throws NotFoundException {
252 return getColorStateList(resources, id, null);
256 static ColorStateList getColorStateList(Resources resources, int id, Theme theme)
262 ColorStateList stateList = ResourceHelper.getColorStateList(resValue.getSecond(),
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
BottomNavigationView.java 144 a.getColorStateList(R.styleable.BottomNavigationView_itemIconTint));
151 a.getColorStateList(R.styleable.BottomNavigationView_itemTextColor));
399 ColorStateList baseColor = AppCompatResources.getColorStateList(
  /external/libmojo/base/android/java/src/org/chromium/base/
ApiCompatibilityUtils.java 494 * @see android.content.res.Resources#getColorStateList(int id).
497 public static ColorStateList getColorStateList(Resources res, int id) throws NotFoundException {
499 return res.getColorStateList(id, null);
501 return res.getColorStateList(id);
  /frameworks/base/core/java/android/widget/
TabHost.java 633 tv.setTextColor(context.getColorStateList(R.color.tab_indicator_text_v4));
678 tv.setTextColor(context.getColorStateList(R.color.tab_indicator_text_v4));
  /frameworks/base/core/java/android/content/
Context.java 621 public final ColorStateList getColorStateList(@ColorRes int id) {
622 return getResources().getColorStateList(id, getTheme());
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListItemView.java 350 mSecondaryTextColor = a.getColorStateList(R.styleable.Theme_android_textColorSecondary);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactListItemView.java 264 mSecondaryTextColor = a.getColorStateList(R.styleable.Theme_android_textColorSecondary);
282 ContextCompat.getColorStateList(getContext(), R.color.search_video_call_icon_tint));
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat-nodeps.jar 
  /prebuilts/sdk/current/support/compat/libs/
android-support-compat.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 1149 milliseconds

1 2 3