HomeSort by relevance Sort by last modified time
    Searched defs:mBackground (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /packages/apps/Launcher2/src/com/android/launcher2/
BubbleTextView.java 59 private Drawable mBackground;
81 mBackground = getBackground();
113 return who == mBackground || super.verifyDrawable(who);
157 Drawable d = mBackground;
280 final Drawable background = mBackground;
321 if (mBackground != null) mBackground.setCallback(this);
327 if (mBackground != null) mBackground.setCallback(null);
Cling.java 60 private Drawable mBackground;
113 mBackground = null;
206 if (mBackground == null) {
210 mBackground = getResources().getDrawable(R.drawable.bg_cling1);
214 mBackground = getResources().getDrawable(R.drawable.bg_cling2);
217 mBackground = getResources().getDrawable(R.drawable.bg_cling3);
219 mBackground = getResources().getDrawable(R.drawable.bg_cling4);
221 mBackground = getResources().getDrawable(R.drawable.bg_cling5);
224 if (mBackground != null) {
225 mBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight())
    [all...]
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureDetailsActivity.java 57 ColorDrawable mBackground;
93 mBackground = new ColorDrawable(Color.BLACK);
94 mTopLevelLayout.setBackground(mBackground);
165 ObjectAnimator bgAnim = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255);
225 ObjectAnimator bgAnim = ObjectAnimator.ofInt(mBackground, "alpha", 0);
  /external/replicaisland/src/com/replica/replicaisland/
ExtrasMenuActivity.java 23 private View mBackground;
83 mBackground.startAnimation(mFadeOutAnimation);
103 mBackground = findViewById(R.id.mainMenuBackground);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
Illustration.java 48 private Drawable mBackground;
94 if (background == mBackground) {
97 mBackground = background;
168 if (mBackground != null) {
171 mBackground.setBounds(0, 0, (int) Math.ceil(layoutWidth / mScale),
179 if (mBackground != null) {
186 shouldMirrorDrawable(mBackground, getLayoutDirection())) {
189 canvas.translate(-mBackground.getBounds().width(), 0);
191 mBackground.draw(canvas);
  /packages/apps/Launcher3/src/com/android/launcher3/
Hotseat.java 57 private ColorDrawable mBackground;
74 mBackground = new ColorDrawable(mBackgroundColor);
76 setBackground(mBackground);
199 mBackground.setColor((Integer) animation.getAnimatedValue());
216 mBackground.setAlpha(0);
218 mBackground.setAlpha(255);
CellLayout.java 113 private final Drawable mBackground;
224 mBackground = res.getDrawable(R.drawable.bg_celllayout);
225 mBackground.setCallback(this);
226 mBackground.setAlpha((int) (mBackgroundAlpha * 255));
418 mBackground.setState(mIsDragOverlapping
466 mBackground.draw(canvas);
    [all...]
  /frameworks/base/core/java/android/view/
NotificationHeaderView.java 59 private Drawable mBackground;
68 if (mBackground != null) {
205 mBackground = drawable;
206 mBackground.setCallback(this);
210 mBackground = null;
218 if (mBackground != null) {
219 mBackground.setBounds(0, 0, getWidth(), mHeaderBackgroundHeight);
220 mBackground.draw(canvas);
226 return super.verifyDrawable(who) || who == mBackground;
231 if (mBackground != null && mBackground.isStateful())
    [all...]
  /frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
Swarm.java 65 Background mBackground = new Background();
202 mBackground = new Background();
203 mBackground.execute();
208 mBackground.keepRunning = false;
280 mBackground.keepRunning = false;
283 mBackground = new Background();
284 mBackground.execute();
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 83 private Drawable mBackground;
116 mBackground = getBackground();
132 final Drawable background = mBackground;
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 48 private Drawable mBackground;
67 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground);
90 setBackgroundDrawable(mBackground);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
LockscreenWallpaper.java 235 super(new BitmapDrawable(r, state.mBackground));
259 int dwidth = mState.mBackground.getWidth();
260 int dheight = mState.mBackground.getHeight();
291 private final Bitmap mBackground;
294 mBackground = background;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcher.java 52 private final KeyguardUserSwitcherScrim mBackground;
66 mBackground = new KeyguardUserSwitcherScrim(context);
82 mBackground = null;
89 mUserSwitcher.removeOnLayoutChangeListener(mBackground);
98 mUserSwitcher.addOnLayoutChangeListener(mBackground);
99 mUserSwitcher.setBackground(mBackground);
174 mBgAnimator = ObjectAnimator.ofInt(mBackground, "alpha", 0, 255);
RemoteInputView.java 480 private final Drawable mBackground;
486 mBackground = getBackground();
603 setBackground(mBackground);
  /frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/
DemoModeController.java 45 private Handler mBackground;
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.post(mUpdateBattery)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
ListMenuItemView.java 55 private Drawable mBackground;
77 mBackground = a.getDrawable(R.styleable.MenuView_android_itemBackground);
92 ViewCompat.setBackground(this, mBackground);
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
PreviewItemManager.java 107 mIcon.mBackground.setup(mIcon.mLauncher, mIcon, mTotalWidth, mIcon.getPaddingTop());
108 mIcon.mPreviewLayoutRule.init(mIcon.mBackground.previewSize, mIntrinsicIconSize,
129 final float trans = (mIcon.mBackground.previewSize - iconSize) / 2;
Folder.java 799 mFolderIcon.mBackground.fadeInBackgroundShadow();
800 mFolderIcon.mBackground.animateBackgroundStroke();
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 53 private HardwareBgDrawable mBackground;
93 mBackground = new HardwareBgDrawable(mRoundedDivider, !mEdgeBleed, getContext());
95 mChild.setBackground(mBackground);
124 mChild.setBackground(mBackground);
171 mBackground.setRotatedBackground(true);
182 mBackground.setRotatedBackground(false);
343 top.addUpdateListener(animation -> mBackground.invalidateSelf());
375 int curPoint = mBackground.getCutPoint();
378 mBackground.setCutPoint(point);
388 mAnimator = ObjectAnimator.ofInt(mBackground, "cutPoint", curPoint, point)
    [all...]
ImageWallpaper.java 104 Bitmap mBackground;
166 && mBackground != null) {
191 mBackground = null;
350 if (mBackground == null) {
352 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
353 mBackground + ", " +
354 ((mBackground == null) ? 0 : mBackground.getWidth()) + ", " +
355 ((mBackground == null) ? 0 : mBackground.getHeight()) + ", "
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CommonControllerOverlay.java 57 protected final View mBackground;
83 mBackground = new View(context);
84 mBackground.setBackgroundColor(context.getResources().getColor(R.color.darker_transparent));
85 addView(mBackground, matchParent);
193 mBackground.setVisibility(View.INVISIBLE);
282 mBackground.layout(0, y - mTimeBar.getBarHeight(), w, y);
308 mBackground.setVisibility(View.VISIBLE);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 125 private ViewGroup mBackground;
173 mBackground = (ViewGroup) findViewById(R.id.background);
615 mBackground.animate()
636 mBackground.animate()
699 mBackground.bringChildToFront(photo);
886 mBackground.addView(photo, new LayoutParams(LayoutParams.WRAP_CONTENT,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 78 private RGB mBackground;
95 mBackground = null;
287 if (mBackground == null) {
306 assert mBackground != null;
558 mBackground = bg;
569 if (mBackground == null) {
573 return mBackground;
589 if (mBackground != null) {
598 if (mBackground != null) {
625 mBackground = ImageUtils.intToRgb(rgb)
    [all...]
PaletteControl.java 192 private Color mBackground;
324 if (mBackground != null) {
325 mBackground.dispose();
326 mBackground = null;
433 if (mBackground != null) {
434 mBackground.dispose();
435 mBackground = null;
439 mBackground = new Color(getDisplay(), background);
497 if (mPaletteMode.isPreview() && mBackground != null) {
498 wrapper.setBackground(mBackground);
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 193 private Drawable mBackground;
496 return mBackground;
508 mBackground = background;
519 if (mBackground instanceof StateListDrawable) {
520 StateListDrawable stateList = (StateListDrawable) mBackground;
    [all...]

Completed in 1222 milliseconds

12 3 4 5