Searched defs:mBackground (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DRecentApplicationsBackground.java39 private Drawable mBackground; field in class:RecentApplicationsBackground
54 mBackground = getBackground();
71 return who == mBackground || super.verifyDrawable(who);
77 if (mBackground != null) mBackground.jumpToCurrentState();
82 Drawable d = mBackground;
91 final Drawable background = mBackground;
97 mBackground.getPadding(bkg);
119 mBackground.draw(canvas);
134 mBackground
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuItemView.java46 private Drawable mBackground; field in class:ListMenuItemView
64 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground);
82 setBackgroundDrawable(mBackground);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContainer.java41 private Drawable mBackground; field in class:ActionBarContainer
58 mBackground = a.getDrawable(com.android.internal.R.styleable.ActionBar_background);
70 mBackground == null && mStackedBackground == null);
80 if (mBackground != null) {
81 mBackground.setCallback(null);
82 unscheduleDrawable(mBackground);
84 mBackground = bg;
89 mBackground == null && mStackedBackground == null);
103 mBackground == null && mStackedBackground == null);
117 mBackground
[all...]
H A DRotarySelector.java61 private Bitmap mBackground; field in class:RotarySelector
183 mBackground = getBitmapFor(R.drawable.jog_dial_bg);
197 mBackgroundWidth = mBackground.getWidth();
198 mBackgroundHeight = mBackground.getHeight();
311 canvas.drawBitmap(mBackground, mBgMatrix, mPaint);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java111 Bitmap mBackground; field in class:ImageWallpaper.DrawableEngine
160 mBackground = null;
174 mBackground != null && mIsHwAccelerated) {
178 mBackground.recycle();
179 mBackground = null;
333 if (mBackground == null || surfaceDimensionsChanged) {
335 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
336 mBackground + ", " +
337 ((mBackground == null) ? 0 : mBackground
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java113 private Drawable mBackground; field in class:PopupWindow
187 mBackground = a.getDrawable(R.styleable.PopupWindow_popupBackground);
202 if (mBackground instanceof StateListDrawable) {
203 StateListDrawable background = (StateListDrawable) mBackground;
315 return mBackground;
325 mBackground = background;
906 if (mBackground != null) {
952 if (mBackground != null) {
966 popupViewContainer.setBackgroundDrawable(mBackground);
1023 if (mBackground !
[all...]
/frameworks/base/core/java/android/view/
H A DView.java2918 private Drawable mBackground; field in class:View
5715 if (mBackground != null) mBackground.setVisible(visibility == VISIBLE, false);
8505 if (mBackground != null) {
10495 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
13681 final Drawable background = mBackground;
14212 if (mBackground != null) {
14213 mBackground.setLayoutDirection(getLayoutDirection());
14266 return who == mBackground;
[all...]

Completed in 155 milliseconds