Searched refs:mBackground (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationBackgroundView.java35 private Drawable mBackground; field in class:NotificationBackgroundView
45 draw(canvas, mBackground);
57 return super.verifyDrawable(who) || who == mBackground;
62 drawableStateChanged(mBackground);
73 if (mBackground != null) {
74 mBackground.setHotspot(x, y);
83 if (mBackground != null) {
84 mBackground.setCallback(null);
85 unscheduleDrawable(mBackground);
87 mBackground
[all...]
H A DNotificationGuts.java31 private Drawable mBackground; field in class:NotificationGuts
42 draw(canvas, mBackground);
55 mBackground = mContext.getDrawable(R.drawable.notification_guts_bg);
56 if (mBackground != null) {
57 mBackground.setCallback(this);
63 return super.verifyDrawable(who) || who == mBackground;
68 drawableStateChanged(mBackground);
79 if (mBackground != null) {
80 mBackground.setHotspot(x, y);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarBackgroundDrawableV21.java21 if (mContainer.mBackground != null) {
22 mContainer.mBackground.getOutline(outline);
H A DActionBarContainer.java43 Drawable mBackground; field in class:ActionBarContainer
65 mBackground = a.getDrawable(R.styleable.ActionBar_background);
77 mBackground == null && mStackedBackground == null);
88 if (mBackground != null) {
89 mBackground.setCallback(null);
90 unscheduleDrawable(mBackground);
92 mBackground = bg;
96 mBackground.setBounds(mActionBarView.getLeft(), mActionBarView.getTop(),
101 mBackground == null && mStackedBackground == null);
119 mBackground
[all...]
H A DActionBarBackgroundDrawable.java22 if (mContainer.mBackground != null) {
23 mContainer.mBackground.draw(canvas);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContainer.java45 private Drawable mBackground; field in class:ActionBarContainer
64 mBackground = a.getDrawable(com.android.internal.R.styleable.ActionBar_background);
77 mBackground == null && mStackedBackground == null);
88 if (mBackground != null) {
89 mBackground.setCallback(null);
90 unscheduleDrawable(mBackground);
92 mBackground = bg;
96 mBackground.setBounds(mActionBarView.getLeft(), mActionBarView.getTop(),
101 mBackground == null && mStackedBackground == null);
119 mBackground
[all...]
H A DRotarySelector.java68 private Bitmap mBackground; field in class:RotarySelector
190 mBackground = getBitmapFor(R.drawable.jog_dial_bg);
204 mBackgroundWidth = mBackground.getWidth();
205 mBackgroundHeight = mBackground.getHeight();
318 canvas.drawBitmap(mBackground, mBgMatrix, mPaint);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DRecentApplicationsBackground.java38 private Drawable mBackground; field in class:RecentApplicationsBackground
53 mBackground = getBackground();
70 return who == mBackground || super.verifyDrawable(who);
76 if (mBackground != null) mBackground.jumpToCurrentState();
81 Drawable d = mBackground;
90 final Drawable background = mBackground;
96 mBackground.getPadding(bkg);
118 mBackground.draw(canvas);
133 mBackground
[all...]
/frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
H A DDemoModeController.java45 private Handler mBackground; field in class:DemoModeController
69 mBackground = new Handler(background.getLooper());
141 mBackground.removeCallbacks(mUpdateClock);
142 mBackground.post(mUpdateClock);
148 mBackground.removeCallbacks(mUpdateClock);
149 mBackground.post(mUpdateClock);
155 mBackground.removeCallbacks(mUpdateBattery);
156 mBackground.post(mUpdateBattery);
162 mBackground.removeCallbacks(mUpdateBattery);
163 mBackground
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java112 Bitmap mBackground; field in class:ImageWallpaper.DrawableEngine
162 mBackground = null;
177 mBackground != null && mIsHwAccelerated) {
181 mBackground.recycle();
182 mBackground = null;
214 mBackground = null;
367 if (mBackground == null || surfaceDimensionsChanged) {
369 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
370 mBackground + ", " +
371 ((mBackground
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailClipper.java30 private final TransitionDrawable mBackground; field in class:QSDetailClipper
36 mBackground = (TransitionDrawable) detail.getBackground();
60 mBackground.startTransition((int)(mAnimator.getDuration() * 0.6));
73 mBackground.reverseTransition((int)(mAnimator.getDuration() * 0.35));
95 mBackground.resetTransition();
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleDrawable.java124 private RippleBackground mBackground; field in class:RippleDrawable
213 if (mBackground != null) {
214 needsDraw |= mBackground.isHardwareAnimating();
215 mBackground.jump();
478 if (mRipple == null || mBackground == null) {
493 if (mBackground == null) {
494 mBackground = new RippleBackground(this, mHotspotBounds);
498 mBackground.setup(mState.mMaxRadius, color, mDensity);
499 mBackground.enter();
503 if (mBackground !
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewHeader.java63 RippleDrawable mBackground; field in class:TaskViewHeader
152 mBackground = (RippleDrawable)
154 mBackground = (RippleDrawable) mBackground.mutate().getConstantState().newDrawable();
155 mBackground.setColor(ColorStateList.valueOf(0));
156 mBackground.setDrawableByLayerId(mBackground.getId(0), mBackgroundColorDrawable);
157 setBackground(mBackground);
292 mBackground.setColor(new ColorStateList(states, colors));
293 mBackground
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java53 private final KeyguardUserSwitcherScrim mBackground; field in class:KeyguardUserSwitcher
62 mBackground = new KeyguardUserSwitcherScrim(mUserSwitcher);
63 mUserSwitcher.setBackground(mBackground);
78 mBackground = null;
149 mBgAnimator = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java119 private Drawable mBackground; field in class:PopupWindow
201 mBackground = a.getDrawable(R.styleable.PopupWindow_popupBackground);
218 if (mBackground instanceof StateListDrawable) {
219 StateListDrawable background = (StateListDrawable) mBackground;
333 return mBackground;
345 mBackground = background;
969 if (mBackground != null) {
1015 if (mBackground != null) {
1029 popupViewContainer.setBackground(mBackground);
1088 if (mBackground !
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuItemView.java47 private Drawable mBackground; field in class:ListMenuItemView
65 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground);
87 setBackgroundDrawable(mBackground);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java141 protected View mBackground; field in class:PhotoViewController
290 mBackground = findViewById(R.id.photo_activity_background);
305 mBackground.setVisibility(View.VISIBLE);
888 mBackground.setAlpha(0f);
889 mBackground.animate().alpha(1f).setDuration(ENTER_ANIMATION_DURATION_MS).start();
890 mBackground.setVisibility(View.VISIBLE);
914 mBackground.startAnimation(alphaAnimation);
915 mBackground.setVisibility(View.VISIBLE);
969 mBackground.animate().alpha(0f).setDuration(EXIT_ANIMATION_DURATION_MS).start();
970 mBackground
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DListMenuItemView.java50 private Drawable mBackground; field in class:ListMenuItemView
69 mBackground = a.getDrawable(R.styleable.MenuView_android_itemBackground);
87 setBackgroundDrawable(mBackground);
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java2260 private Bitmap mBackground; field in class:NotificationCompat.WearableExtender
2295 mBackground = wearableBundle.getParcelable(KEY_BACKGROUND);
2332 if (mBackground != null) {
2333 wearableBundle.putParcelable(KEY_BACKGROUND, mBackground);
2366 that.mBackground = this.mBackground;
2531 mBackground = background;
2544 return mBackground;
/frameworks/base/core/java/android/view/
H A DView.java3195 private Drawable mBackground; field in class:View
6664 if (mBackground != null) mBackground.setVisible(visibility == VISIBLE, false);
9708 if (mBackground != null) {
11694 if (mBackground != null && mBackground.isProjected()) {
11728 return mBackground != null;
11883 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
13200 if (mBackground !
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java4366 private Bitmap mBackground; field in class:Notification.WearableExtender
4398 mBackground = wearableBundle.getParcelable(KEY_BACKGROUND);
4433 if (mBackground != null) {
4434 wearableBundle.putParcelable(KEY_BACKGROUND, mBackground);
4467 that.mBackground = this.mBackground;
4632 mBackground = background;
4645 return mBackground;

Completed in 498 milliseconds