Searched defs:mBackground (Results 26 - 34 of 34) sorted by relevance

12

/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DAnimatedRecyclerView.java674 private int mBackground; field in class:AnimatedRecyclerView.MyAdapter
683 mBackground = val.resourceId;
697 h.textView.setBackgroundResource(mBackground);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleDrawable.java129 private RippleBackground mBackground; field in class:RippleDrawable
219 if (mBackground != null) {
220 mBackground.end();
306 if (mBackground != null) {
307 mBackground.onBoundsChange();
531 if (mRipple == null || mBackground == null) {
546 if (mBackground == null) {
548 mBackground = new RippleBackground(this, mHotspotBounds, isBounded, mForceSoftware);
551 mBackground.setup(mState.mMaxRadius, mDensity);
552 mBackground
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java110 Bitmap mBackground; field in class:ImageWallpaper.DrawableEngine
172 && mBackground != null) {
176 mBackground.recycle();
177 mBackground = null;
201 mBackground = null;
361 if (mBackground == null) {
363 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
364 mBackground + ", " +
365 ((mBackground == null) ? 0 : mBackground
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java180 private Drawable mBackground; field in class:PopupWindow
478 return mBackground;
490 mBackground = background;
501 if (mBackground instanceof StateListDrawable) {
502 StateListDrawable stateList = (StateListDrawable) mBackground;
1241 if (mBackground != null && mBackgroundView != null) {
1294 if (mBackground != null) {
1296 mBackgroundView.setBackground(mBackground);
1423 if (mBackground != null) {
1424 p.format = mBackground
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java116 private View mBackground; field in class:DividerView
274 mBackground = findViewById(R.id.docked_divider_background);
367 minimizeTop = mBackground.getTop();
369 minimizeLeft = mBackground.getLeft();
371 minimizeLeft = mBackground.getRight() - mMinimizedShadow.getWidth();
655 mBackground.animate().scaleY(1.4f);
657 mBackground.animate().scaleX(1.4f);
659 mBackground.animate()
679 mBackground.animate()
701 mBackground
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java150 protected View mBackground; field in class:PhotoViewController
317 mBackground = getBackground();
333 mBackground.setVisibility(View.VISIBLE);
438 return mBackground != null;
1014 mBackground.setAlpha(0f);
1015 mBackground.animate().alpha(1f).setDuration(ENTER_ANIMATION_DURATION_MS).start();
1016 mBackground.setVisibility(View.VISIBLE);
1044 mBackground.startAnimation(alphaAnimation);
1045 mBackground.setVisibility(View.VISIBLE);
1103 mBackground
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java5857 private Bitmap mBackground; field in class:Notification.WearableExtender
5891 mBackground = wearableBundle.getParcelable(KEY_BACKGROUND);
5928 if (mBackground != null) {
5929 wearableBundle.putParcelable(KEY_BACKGROUND, mBackground);
5968 that.mBackground = this.mBackground;
6135 mBackground = background;
6148 return mBackground;
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java3036 private Bitmap mBackground; field in class:NotificationCompat.WearableExtender
3074 mBackground = wearableBundle.getParcelable(KEY_BACKGROUND);
3114 if (mBackground != null) {
3115 wearableBundle.putParcelable(KEY_BACKGROUND, mBackground);
3157 that.mBackground = this.mBackground;
3325 mBackground = background;
3338 return mBackground;
/frameworks/base/core/java/android/view/
H A DView.java3527 private Drawable mBackground; field in class:View
10407 final Drawable dr = mBackground;
11565 if (mBackground != null
13660 if (mBackground != null && mBackground.isProjected()) {
13694 return mBackground != null;
13849 if (mBackground != null && mBackground.getOpacity() == PixelFormat.OPAQUE) {
15277 if (mBackground != null && (!mLeftPaddingDefined || !mRightPaddingDefined)) {
15283 mBackground
[all...]

Completed in 570 milliseconds

12