HomeSort by relevance Sort by last modified time
    Searched refs:mForeground (Results 1 - 10 of 10) sorted by null

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
NonOverlappingLinearLayoutWithForeground.java 33 private Drawable mForeground;
70 if (mForeground != d) {
71 mForeground = d;
74 mForeground.setCallback(this);
75 if (mForeground.isStateful()) {
76 mForeground.setState(getDrawableState());
86 return mForeground;
93 if (mForeground != null) {
94 final Drawable foreground = mForeground;
115 return super.verifyDrawable(who) || (who == mForeground);
    [all...]
RowContainerView.java 34 private Drawable mForeground;
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/
ForegroundLinearLayout.java 35 private Drawable mForeground;
103 if (mForegroundGravity == Gravity.FILL && mForeground != null) {
105 mForeground.getPadding(padding);
114 return super.verifyDrawable(who) || (who == mForeground);
120 if (mForeground != null) {
121 mForeground.jumpToCurrentState();
128 if (mForeground != null && mForeground.isStateful()) {
129 mForeground.setState(getDrawableState());
142 if (mForeground != drawable)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
WindowSurface.java 164 final Paint mForeground = new Paint();
180 mForeground.setColor(0xff00ffff);
181 mForeground.setAntiAlias(false);
182 mForeground.setStrokeWidth(mLineWidth);
238 mForeground.setColor(mOldColor[i] | makeGreen(i));
239 mForeground.setAlpha(((NUM_OLD-i) * 255) / NUM_OLD);
241 canvas.drawLine(mOld[p], mOld[p+1], mOld[p+2], mOld[p+3], mForeground);
250 mForeground.setColor(color | makeGreen(-2));
251 canvas.drawLine(mPoint1.x, mPoint1.y, mPoint2.x, mPoint2.y, mForeground);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 38 private IColor mForeground = new TestColor(0xFFFFFF);
126 return mForeground;
150 mForeground = color;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 79 private RGB mForeground;
96 mForeground = null;
559 mForeground = fg;
577 if (mForeground == null) {
581 return mForeground;
630 mForeground = ImageUtils.intToRgb(rgb);
637 // mForeground is allowed to be null.
PaletteControl.java 193 private Color mForeground;
328 if (mForeground != null) {
329 mForeground.dispose();
330 mForeground = null;
429 if (mForeground != null) {
430 mForeground.dispose();
431 mForeground = null;
443 mForeground = new Color(getDisplay(), foreground);
658 if (mForeground != null) {
659 item.setForeground(mForeground);
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailSettingsActivity.java 194 private boolean mForeground;
231 mForeground = true;
318 mForeground = false;
619 // It would be cleaner to do the "if (mForeground)" check in one
632 if (mForeground) {
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 203 milliseconds