Searched defs:newDrawable (Results 26 - 31 of 31) sorted by relevance

12

/frameworks/base/core/java/android/widget/
H A DProgressBar.java514 final BitmapDrawable clone = (BitmapDrawable) bitmap.getConstantState().newDrawable();
617 private void swapCurrentDrawable(Drawable newDrawable) { argument
619 mCurrentDrawable = newDrawable;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java482 mVectorDrawable = (VectorDrawable) cs.newDrawable(res);
484 mVectorDrawable = (VectorDrawable) cs.newDrawable();
516 public Drawable newDrawable() { method in class:AnimatedVectorDrawable.AnimatedVectorDrawableState
521 public Drawable newDrawable(Resources res) { method in class:AnimatedVectorDrawable.AnimatedVectorDrawableState
H A DGradientDrawable.java1946 public Drawable newDrawable() { method in class:GradientDrawable.GradientState
1951 public Drawable newDrawable(@Nullable Resources res) { method in class:GradientDrawable.GradientState
H A DLayerDrawable.java1830 clone = cs.newDrawable(res);
1832 clone = cs.newDrawable();
2027 public Drawable newDrawable() { method in class:LayerDrawable.LayerState
2032 public Drawable newDrawable(@Nullable Resources res) { method in class:LayerDrawable.LayerState
H A DVectorDrawable.java897 public Drawable newDrawable() { method in class:VectorDrawable.VectorDrawableState
902 public Drawable newDrawable(Resources res) { method in class:VectorDrawable.VectorDrawableState
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java729 public Drawable newDrawable() { method in class:VectorDrawableCompat.VectorDrawableDelegateState
731 drawableCompat.mDelegateDrawable = (VectorDrawable) mDelegateState.newDrawable();
736 public Drawable newDrawable(Resources res) { method in class:VectorDrawableCompat.VectorDrawableDelegateState
738 drawableCompat.mDelegateDrawable = (VectorDrawable) mDelegateState.newDrawable(res);
743 public Drawable newDrawable(Resources res, Theme theme) { method in class:VectorDrawableCompat.VectorDrawableDelegateState
746 (VectorDrawable) mDelegateState.newDrawable(res, theme);
875 public Drawable newDrawable() { method in class:VectorDrawableCompat.VectorDrawableCompatState
880 public Drawable newDrawable(Resources res) { method in class:VectorDrawableCompat.VectorDrawableCompatState

Completed in 126 milliseconds

12