Searched refs:mShapeDrawable (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java38 private Drawable mShapeDrawable; field in class:FloatingActionButtonLollipop
57 mShapeDrawable = DrawableCompat.wrap(originalBackground.mutate());
58 DrawableCompat.setTintList(mShapeDrawable, backgroundTint);
60 DrawableCompat.setTintMode(mShapeDrawable, backgroundTintMode);
66 rippleContent = new LayerDrawable(new Drawable[]{mBorderDrawable, mShapeDrawable});
69 rippleContent = mShapeDrawable;
81 DrawableCompat.setTintList(mShapeDrawable, tint);
89 DrawableCompat.setTintMode(mShapeDrawable, tintMode);
/frameworks/support/design/eclair-mr1/android/support/design/widget/
H A DFloatingActionButtonEclairMr1.java34 private Drawable mShapeDrawable; field in class:FloatingActionButtonEclairMr1
71 mShapeDrawable = DrawableCompat.wrap(originalBackground.mutate());
72 DrawableCompat.setTintList(mShapeDrawable, backgroundTint);
74 DrawableCompat.setTintMode(mShapeDrawable, backgroundTintMode);
78 // As we don't know the actual outline of mShapeDrawable, we'll just guess that it's a
94 layers = new Drawable[] {mBorderDrawable, mShapeDrawable, mRippleDrawable};
97 layers = new Drawable[] {mShapeDrawable, mRippleDrawable};
115 DrawableCompat.setTintList(mShapeDrawable, tint);
123 DrawableCompat.setTintMode(mShapeDrawable, tintMode);

Completed in 19 milliseconds