Searched refs:mForeground (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DNonOverlappingLinearLayoutWithForeground.java35 private Drawable mForeground; field in class:NonOverlappingLinearLayoutWithForeground
73 if (mForeground != d) {
74 mForeground = d;
77 mForeground.setCallback(this);
78 if (mForeground.isStateful()) {
79 mForeground.setState(getDrawableState());
89 return mForeground;
96 if (mForeground != null) {
97 final Drawable foreground = mForeground;
118 return super.verifyDrawable(who) || (who == mForeground);
[all...]
H A DRowContainerView.java34 private Drawable mForeground; field in class:RowContainerView
76 mForeground = d;
77 setWillNotDraw(mForeground == null);
82 if (mForeground instanceof ColorDrawable) {
83 ((ColorDrawable) mForeground.mutate()).setColor(color);
91 return mForeground;
103 if (mForeground != null) {
106 mForeground.setBounds(0, 0, getWidth(), getHeight());
108 mForeground.draw(canvas);
/frameworks/support/design/src/android/support/design/internal/
H A DForegroundLinearLayout.java39 private Drawable mForeground; field in class:ForegroundLinearLayout
107 if (mForegroundGravity == Gravity.FILL && mForeground != null) {
109 mForeground.getPadding(padding);
118 return super.verifyDrawable(who) || (who == mForeground);
124 if (mForeground != null) {
125 mForeground.jumpToCurrentState();
132 if (mForeground != null && mForeground.isStateful()) {
133 mForeground.setState(getDrawableState());
146 if (mForeground !
[all...]

Completed in 67 milliseconds