HomeSort by relevance Sort by last modified time
    Searched refs:newDrawable (Results 1 - 25 of 55) sorted by null

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 100 Drawable newDrawable = decodedBitmapDrawable(compressed);
101 if (newDrawable == null) {
102 newDrawable = defaultDrawable();
109 if (newDrawable == null) return previousBitmap();
113 mTarget.setImageDrawable(newDrawable);
118 beforeAndAfter[1] = newDrawable;
126 mPreviousDrawable = newDrawable;
  /packages/apps/Camera2/src/com/android/camera/
MultiToggleImageButton.java 368 Drawable newDrawable = getResources().getDrawable(mImageIds[newState]).mutate();
369 newDrawable.setState(enabledState);
382 newDrawable.setBounds(0, 0, newDrawable.getIntrinsicWidth(), newDrawable.getIntrinsicHeight());
384 newDrawable.draw(canvas);
391 newDrawable.setBounds(0, 0, newDrawable.getIntrinsicWidth(), newDrawable.getIntrinsicHeight());
393 newDrawable.draw(canvas)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 252 public Drawable newDrawable() {
257 public Drawable newDrawable(Resources res) {
ClipDrawable.java 366 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
368 mDrawable = orig.mDrawable.getConstantState().newDrawable();
387 public Drawable newDrawable() {
392 public Drawable newDrawable(Resources res) {
AnimatedRotateDrawable.java 421 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
423 mDrawable = orig.mDrawable.getConstantState().newDrawable();
441 public Drawable newDrawable() {
446 public Drawable newDrawable(Resources res) {
AnimatedVectorDrawable.java 347 mVectorDrawable = (VectorDrawable) cs.newDrawable(res);
349 mVectorDrawable = (VectorDrawable) cs.newDrawable();
383 public Drawable newDrawable() {
388 public Drawable newDrawable(Resources res) {
InsetDrawable.java 434 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
436 mDrawable = orig.mDrawable.getConstantState().newDrawable();
457 public Drawable newDrawable() {
462 public Drawable newDrawable(Resources res) {
RotateDrawable.java 556 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
558 mDrawable = orig.mDrawable.getConstantState().newDrawable();
582 public Drawable newDrawable() {
587 public Drawable newDrawable(Resources res) {
ScaleDrawable.java 372 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
374 mDrawable = orig.mDrawable.getConstantState().newDrawable();
395 public Drawable newDrawable() {
400 public Drawable newDrawable(Resources res) {
AnimationDrawable.java 387 public Drawable newDrawable() {
392 public Drawable newDrawable(Resources res) {
ColorDrawable.java 306 public Drawable newDrawable() {
311 public Drawable newDrawable(Resources res) {
LevelListDrawable.java 210 public Drawable newDrawable() {
215 public Drawable newDrawable(Resources res) {
Drawable.java     [all...]
StateListDrawable.java 366 public Drawable newDrawable() {
371 public Drawable newDrawable(Resources res) {
ShapeDrawable.java 557 public Drawable newDrawable() {
562 public Drawable newDrawable(Resources res) {
LayerDrawable.java 959 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
961 mDrawable = orig.mDrawable.getConstantState().newDrawable();
    [all...]
AnimatedStateListDrawable.java 640 public Drawable newDrawable() {
645 public Drawable newDrawable(Resources res) {
NinePatchDrawable.java 661 public Drawable newDrawable() {
666 public Drawable newDrawable(Resources res) {
RippleDrawable.java 938 public Drawable newDrawable() {
943 public Drawable newDrawable(Resources res) {
  /packages/apps/Camera2/src/com/android/camera/ui/
ModeIconView.java 88 return mIconDrawable.getConstantState().newDrawable();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CachingIconLoader.java 73 return value == null ? null : value.newDrawable();
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
BackgroundManager.java 120 public Drawable newDrawable() {
318 return drawable.getConstantState().newDrawable(context.getResources()).mutate();
454 drawable.getConstantState().newDrawable().mutate();
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
ExtendedBitmapDrawable.java 104 placeholder = constantState.newDrawable(mResources);
128 mProgress = new Progress(mOpts.progressBar.getConstantState().newDrawable(mResources), mResources,
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 605 return cached.newDrawable();
646 return cached == null ? null : cached.newDrawable(mProviderContext.getResources());
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 564 return cached.newDrawable();
605 return cached == null ? null : cached.newDrawable(mProviderContext.getResources());

Completed in 701 milliseconds

1 2 3