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

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContainer.java44 private Drawable mBackground; field in class:ActionBarContainer
61 mBackground = a.getDrawable(R.styleable.ActionBar_background);
73 mBackground == null && mStackedBackground == null);
83 if (mBackground != null) {
84 mBackground.setCallback(null);
85 unscheduleDrawable(mBackground);
87 mBackground = bg;
92 mBackground == null && mStackedBackground == null);
106 mBackground == null && mStackedBackground == null);
120 mBackground
[all...]
/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;
88 mBackground.setBounds(mActionBarView.getLeft(), mActionBarView.getTop(),
93 mBackground == null && mStackedBackground == null);
111 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/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/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;
366 if (mBackground == null || surfaceDimensionsChanged) {
368 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
369 mBackground + ", " +
370 ((mBackground == null) ? 0 : mBackground
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java115 private Drawable mBackground; field in class:PopupWindow
190 mBackground = a.getDrawable(R.styleable.PopupWindow_popupBackground);
205 if (mBackground instanceof StateListDrawable) {
206 StateListDrawable background = (StateListDrawable) mBackground;
318 return mBackground;
328 mBackground = background;
932 if (mBackground != null) {
978 if (mBackground != null) {
992 popupViewContainer.setBackgroundDrawable(mBackground);
1049 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);
83 setBackgroundDrawable(mBackground);
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
H A DPhotoViewActivity.java121 protected View mBackground; field in class:PhotoViewActivity
246 mBackground = findViewById(R.id.photo_activity_background);
261 mBackground.setVisibility(View.VISIBLE);
822 mBackground.setAlpha(0f);
823 mBackground.animate().alpha(1f).setDuration(ENTER_ANIMATION_DURATION_MS).start();
824 mBackground.setVisibility(View.VISIBLE);
848 mBackground.startAnimation(alphaAnimation);
849 mBackground.setVisibility(View.VISIBLE);
903 mBackground.animate().alpha(0f).setDuration(EXIT_ANIMATION_DURATION_MS).start();
904 mBackground
[all...]
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
H A DPhotoViewActivity.java120 protected View mBackground; field in class:PhotoViewActivity
245 mBackground = findViewById(R.id.photo_activity_background);
260 mBackground.setVisibility(View.VISIBLE);
821 mBackground.setAlpha(0f);
822 mBackground.animate().alpha(1f).setDuration(ENTER_ANIMATION_DURATION_MS).start();
823 mBackground.setVisibility(View.VISIBLE);
847 mBackground.startAnimation(alphaAnimation);
848 mBackground.setVisibility(View.VISIBLE);
902 mBackground.animate().alpha(0f).setDuration(EXIT_ANIMATION_DURATION_MS).start();
903 mBackground
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DListMenuItemView.java50 private Drawable mBackground; field in class:ListMenuItemView
70 mBackground = a.getDrawable(R.styleable.MenuView_android_itemBackground);
88 setBackgroundDrawable(mBackground);
/frameworks/base/core/java/android/view/
H A DView.java3126 private Drawable mBackground; field in class:View
6037 if (mBackground != null) mBackground.setVisible(visibility == VISIBLE, false);
8981 if (mBackground != null) {
11051 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
12362 if (mBackground != null && (!mLeftPaddingDefined || !mRightPaddingDefined)) {
12368 mBackground.getPadding(padding);
14439 final Drawable background = mBackground;
15052 if (mBackground !
[all...]

Completed in 404 milliseconds