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

1 2

  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContainer.java 44 private Drawable mBackground;
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 == null && mStackedBackground == null)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContainer.java 41 private Drawable mBackground;
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 == null && mStackedBackground == null)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
RecentApplicationsBackground.java 39 private Drawable mBackground;
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.setCallback(this)
    [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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 109 Bitmap mBackground;
157 mBackground = null;
170 mBackground != null && mIsHwAccelerated) {
174 mBackground.recycle();
175 mBackground = null;
321 if (mBackground == null || surfaceDimensionsChanged) {
323 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
324 mBackground + ", " +
325 ((mBackground == null) ? 0 : mBackground.getWidth()) + ", "
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
BubbleTextView.java 59 private Drawable mBackground;
81 mBackground = getBackground();
110 return who == mBackground || super.verifyDrawable(who);
154 Drawable d = mBackground;
277 final Drawable background = mBackground;
318 if (mBackground != null) mBackground.setCallback(this);
324 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...]
  /packages/apps/Launcher3/src/com/android/launcher3/
BubbleTextView.java 64 private Drawable mBackground;
96 mBackground = getBackground();
129 return who == mBackground || super.verifyDrawable(who);
173 Drawable d = mBackground;
301 final Drawable background = mBackground;
342 if (mBackground != null) mBackground.setCallback(this);
348 if (mBackground != null) mBackground.setCallback(null);
Cling.java 65 private Drawable mBackground;
264 mBackground = null;
366 if (mBackground == null) {
368 mBackground = getResources().getDrawable(R.drawable.bg_cling5);
377 } else if (mBackground != null) {
378 mBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
379 mBackground.draw(canvas);
  /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);
MovieControllerOverlay.java 93 startHideAnimation(mBackground);
106 mBackground.setAnimation(null);
  /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/
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();
ExtrasMenuActivity.java 23 private View mBackground;
83 mBackground.startAnimation(mFadeOutAnimation);
103 mBackground = findViewById(R.id.mainMenuBackground);
  /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...]
  /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;
  /frameworks/base/core/java/android/widget/
PopupWindow.java 115 private Drawable mBackground;
190 mBackground = a.getDrawable(R.styleable.PopupWindow_popupBackground);
205 if (mBackground instanceof StateListDrawable) {
206 StateListDrawable background = (StateListDrawable) mBackground;
318 return mBackground;
328 mBackground = background;
    [all...]
  /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/core/java/com/android/internal/view/menu/
ListMenuItemView.java 47 private Drawable mBackground;
65 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground);
83 setBackgroundDrawable(mBackground);
  /frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
PhotoViewActivity.java 121 protected View mBackground;
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);
    [all...]
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java 120 protected View mBackground;
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);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ListMenuItemView.java 50 private Drawable mBackground;
70 mBackground = a.getDrawable(R.styleable.MenuView_android_itemBackground);
88 setBackgroundDrawable(mBackground);
  /packages/apps/Browser/src/com/android/browser/view/
PieMenu.java 99 private Drawable mBackground;
150 mBackground = res.getDrawable(R.drawable.qc_background_normal);
297 int w = mBackground.getIntrinsicWidth();
298 int h = mBackground.getIntrinsicHeight();
301 mBackground.setBounds(left, top, left + w, top + h);
306 mBackground.draw(canvas);

Completed in 761 milliseconds

1 2