Home
last modified time | relevance | path

Searched refs:VectorEnabledTintResources (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DTintContextWrapper.java25 import android.support.v7.widget.VectorEnabledTintResources;
63 || context.getResources() instanceof VectorEnabledTintResources) { in shouldWrap()
69 && Build.VERSION.SDK_INT > VectorEnabledTintResources.MAX_SDK_WHERE_REQUIRED) { in shouldWrap()
84 if (VectorEnabledTintResources.shouldBeUsed()) { in TintContextWrapper()
113 : new VectorEnabledTintResources(this, super.getResources()); in getResources()
DAppCompatDrawableManager.java46 import android.support.v7.widget.VectorEnabledTintResources;
415 @NonNull VectorEnabledTintResources resources, @DrawableRes final int resId) { in onDrawableLoadedFromResources()
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DVectorEnabledTintResources.java34 public class VectorEnabledTintResources extends Resources { class
48 public VectorEnabledTintResources(@NonNull final Context context, in VectorEnabledTintResources() method in VectorEnabledTintResources
DAppCompatActivity.java37 import android.support.v7.widget.VectorEnabledTintResources;
538 if (mResources == null && VectorEnabledTintResources.shouldBeUsed()) { in getResources()
539 mResources = new VectorEnabledTintResources(this, super.getResources()); in getResources()
DAppCompatDelegateImplV7.java62 import android.support.v7.widget.VectorEnabledTintResources;
1011VectorEnabledTintResources.shouldBeUsed() /* Only tint wrap the context if enabled */ in createView()