HomeSort by relevance Sort by last modified time
    Searched defs:mBackground (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationBackgroundView.java 42 private Drawable mBackground;
73 draw(canvas, mBackground);
105 return super.verifyDrawable(who) || who == mBackground;
115 if (mBackground != null) {
116 mBackground.setHotspot(x, y);
125 if (mBackground != null) {
126 mBackground.setCallback(null);
127 unscheduleDrawable(mBackground);
129 mBackground = background;
130 mBackground.mutate()
    [all...]
NotificationGuts.java 47 private Drawable mBackground;
155 draw(canvas, mBackground);
170 mBackground = mContext.getDrawable(R.drawable.notification_guts_bg);
171 if (mBackground != null) {
172 mBackground.setCallback(this);
178 return super.verifyDrawable(who) || who == mBackground;
183 drawableStateChanged(mBackground);
194 if (mBackground != null) {
195 mBackground.setHotspot(x, y);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSDetailClipper.java 30 private final TransitionDrawable mBackground;
36 mBackground = (TransitionDrawable) detail.getBackground();
66 mBackground.startTransition((int)(mAnimator.getDuration() * 0.6));
79 mBackground.reverseTransition((int)(mAnimator.getDuration() * 0.35));
99 mBackground.resetTransition();
105 mBackground.showSecondLayer();
  /packages/apps/Camera2/src/com/android/camera/ui/
ModeIconView.java 37 private final GradientDrawable mBackground;
50 mBackground = (GradientDrawable) getResources()
52 mBackground.setBounds(0, 0, mIconBackgroundSize, mIconBackgroundSize);
78 mBackground.draw(canvas);
107 mBackground.setColor(mHighlightColor);
109 mBackground.setColor(mBackgroundDefaultColor);
RadioOptions.java 43 private Drawable mBackground;
68 mBackground = context.getResources()
124 view.setBackground(mBackground);
  /frameworks/support/cardview/src/main/java/androidx/cardview/widget/
RoundRectDrawable.java 50 private ColorStateList mBackground;
65 mBackground = (color == null) ? ColorStateList.valueOf(Color.TRANSPARENT) : color;
66 mPaint.setColor(mBackground.getColorForState(getState(), mBackground.getDefaultColor()));
164 return mBackground;
183 final int newColor = mBackground.getColorForState(stateSet, mBackground.getDefaultColor());
198 || (mBackground != null && mBackground.isStateful()) || super.isStateful();
RoundRectDrawableWithShadow.java 76 private ColorStateList mBackground;
108 mBackground = (color == null) ? ColorStateList.valueOf(Color.TRANSPARENT) : color;
109 mPaint.setColor(mBackground.getColorForState(getState(), mBackground.getDefaultColor()));
198 final int newColor = mBackground.getColorForState(stateSet, mBackground.getDefaultColor());
210 return (mBackground != null && mBackground.isStateful()) || super.isStateful();
382 return mBackground;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DividerView.java 115 private View mBackground;
288 mBackground = findViewById(R.id.docked_divider_background);
358 minimizeTop = mBackground.getTop();
360 minimizeLeft = mBackground.getLeft();
362 minimizeLeft = mBackground.getRight() - mMinimizedShadow.getWidth();
719 mBackground.animate().scaleY(1.4f);
721 mBackground.animate().scaleX(1.4f);
723 mBackground.animate()
743 mBackground.animate()
    [all...]
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/
RvBoxAdapter.java 31 private int mBackground;
55 mBackground = val.resourceId;
66 h.mTextView.setBackgroundResource(mBackground);
  /frameworks/support/samples/SupportDesignDemos/src/main/java/com/example/android/support/design/widget/
SimpleStringRecyclerViewAdapter.java 35 private int mBackground;
63 mBackground = val.resourceId;
72 textView.setBackgroundResource(mBackground);
  /packages/apps/DeskClock/src/com/android/deskclock/
BaseActivity.java 44 private ColorDrawable mBackground;
77 if (mBackground == null) {
78 mBackground = new ColorDrawable(color);
79 getWindow().setBackgroundDrawable(mBackground);
87 final @ColorInt int currentColor = mBackground.getColor();
102 mBackground.setColor(color);
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DropBadgeView.java 36 private LayerDrawable mBackground;
52 mBackground = new LayerDrawable(list);
54 mBackground.setLayerGravity(1, Gravity.BOTTOM | Gravity.RIGHT);
55 mBackground.setLayerGravity(0, Gravity.TOP | Gravity.LEFT);
56 mBackground.setLayerSize(1, badgeWidth, badgeHeight);
57 mBackground.setLayerSize(0, iconSize, iconSize);
59 setBackground(mBackground);
85 mBackground.setDrawable(0, icon);
  /frameworks/base/tests/Assist/src/com/android/test/assist/
AssistInteractionSession.java 40 private View mBackground;
89 mBackground = v.findViewById(R.id.background);
101 mBackground.getViewTreeObserver().addOnPreDrawListener(
105 mBackground.getViewTreeObserver().removeOnPreDrawListener(this);
120 Interpolator linearOutSlowIn = AnimationUtils.loadInterpolator(mBackground.getContext(),
122 Interpolator fastOutSlowIn = AnimationUtils.loadInterpolator(mBackground.getContext(),
129 mBackground.setTranslationY(50 * mDensity);
130 mBackground.animate()
134 int centerX = mBackground.getWidth()/2;
135 int centerY = (int) (mBackground.getHeight()/5*3.8f)
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ActionBarContainer.java 46 Drawable mBackground;
66 mBackground = a.getDrawable(R.styleable.ActionBar_background);
78 mBackground == null && mStackedBackground == null);
89 if (mBackground != null) {
90 mBackground.setCallback(null);
91 unscheduleDrawable(mBackground);
93 mBackground = bg;
97 mBackground.setBounds(mActionBarView.getLeft(), mActionBarView.getTop(),
102 mBackground == null && mStackedBackground == null);
120 mBackground == null && mStackedBackground == null)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderIcon.java 95 PreviewBackground mBackground = new PreviewBackground();
233 mBackground.animateToAccept(cl, lp.cellX, lp.cellY);
276 mBackground.animateToRest();
423 mTmpParams.transX += mBackground.basePreviewOffsetX;
424 mTmpParams.transY += mBackground.basePreviewOffsetY;
436 mBackground = bg;
437 mBackground.setInvalidateDelegate(this);
446 return mBackground;
461 if (!mBackground.drawingDelegated()) {
462 mBackground.drawBackground(canvas)
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Slider.java 19 private Drawable mBackground;
35 mBackground = background;
77 mBackground = res
80 mBackground = res
92 int bgW = mBackground.getIntrinsicWidth() / 2;
96 mBackground.setBounds(lineX - bgW, r.top + 10, lineX + bgW,
98 mBackground.draw(canvas);
107 int bgH = mBackground.getIntrinsicHeight() / 2;
111 mBackground.setBounds(r.left + 10, lineY - bgH, r.right - 10, lineY
113 mBackground.draw(canvas)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
DifficultyMenuActivity.java 19 private View mBackground;
36 mBackground.startAnimation(mFadeOutAnimation);
55 mBackground.startAnimation(mFadeOutAnimation);
74 mBackground.startAnimation(mFadeOutAnimation);
96 mBackground = findViewById(R.id.mainMenuBackground);
MainMenuActivity.java 44 private View mBackground;
65 mBackground.startAnimation(mFadeOutAnimation);
81 mBackground.startAnimation(mFadeOutAnimation);
125 mBackground = findViewById(R.id.mainMenuBackground);
297 if (mBackground != null) {
298 mBackground.clearAnimation();
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/adapter/
SimpleStringAdapter.java 36 private int mBackground;
65 mBackground = val.resourceId;
84 h.mTextView.setBackgroundResource(mBackground);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 36 private IColor mBackground = new TestColor(0x000000);
116 return mBackground;
144 mBackground = color;
  /tools/loganalysis/src/com/android/loganalysis/parser/
MemoryHealthParser.java 35 private Map<String, Map<String, Long>> mBackground;
75 mBackground= new HashMap<String, Map<String, Long>>();
76 currentSection = mBackground;
96 return new MemoryHealthItem(mForeground, mBackground);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
WindowSurface.java 163 final Paint mBackground = new Paint();
179 mBackground.setColor(0xff000000);
234 canvas.drawColor(mBackground.getColor());
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleDrawable.java 129 private RippleBackground mBackground;
216 if (mBackground != null) {
217 mBackground.jumpToFinal();
284 if (mBackground == null && (hovered || focused)) {
285 mBackground = new RippleBackground(this, mHotspotBounds, isBounded());
286 mBackground.setup(mState.mMaxRadius, mDensity);
288 if (mBackground != null) {
289 mBackground.setState(focused, hovered, pressed);
308 if (mBackground != null) {
309 mBackground.onBoundsChange()
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContainer.java 45 private Drawable mBackground;
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 == null && mStackedBackground == null)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewHeader.java 182 private HighlightColorDrawable mBackground;
232 mBackground = new HighlightColorDrawable();
233 mBackground.setColorAndDim(Color.argb(255, 0, 0, 0), 0f);
234 setBackground(mBackground);
421 updateBackgroundColor(mBackground.getColor(), dimAlpha);
430 mBackground.setColorAndDim(color, dimAlpha);
456 if (mBackground.getColor() != primaryColor) {

Completed in 1008 milliseconds

1 2 3 4 5