/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
StaticBackground.java | 27 private BasicTexture mBackground; 42 if (mBackground != null) mBackground.recycle(); 43 mBackground = new ResourceTexture( 51 if (mBackground != null) mBackground.recycle(); 52 mBackground = new ResourceTexture( 59 //mBackground.draw(canvas, 0, 0, getWidth(), getHeight());
|
AdaptiveBackground.java | 34 private BasicTexture mBackground; 73 if (mBackground == null) { 74 mBackground = texture; 77 mOldBackground = mBackground; 78 mBackground = texture; 100 if (mBackground == null) return; 110 mBackground.draw(canvas, i - scroll, 0, width, height); 118 mBackground, ratio, i - scroll, 0, width, height);
|
/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...] |
/packages/apps/Email/src/com/android/email/activity/ |
MailboxListItem.java | 52 private Drawable mBackground; 79 mBackground = getBackground(); 154 setBackgroundDrawable(mBackground);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestGraphics.java | 35 private IColor mBackground = new TestColor(0x000000); 102 return mBackground; 125 mBackground = color;
|
/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());
|
/packages/apps/Browser/src/com/android/browser/view/ |
PieMenu.java | 85 private Drawable mBackground; 134 mBackground = res.getDrawable(R.drawable.qc_background_normal); 256 int w = mBackground.getIntrinsicWidth(); 257 int h = mBackground.getIntrinsicHeight(); 260 mBackground.setBounds(left, top, left + w, top + h); 265 mBackground.draw(canvas);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
BubbleTextView.java | 65 private Drawable mBackground; 85 mBackground = getBackground(); 118 return who == mBackground || super.verifyDrawable(who); 154 Drawable d = mBackground; 271 final Drawable background = mBackground; 303 if (mBackground != null) mBackground.setCallback(this); 309 if (mBackground != null) mBackground.setCallback(null);
|
Cling.java | 54 private Drawable mBackground; 104 mBackground = null; 169 if (mBackground == null) { 173 mBackground = getResources().getDrawable(R.drawable.bg_cling1); 177 mBackground = getResources().getDrawable(R.drawable.bg_cling2); 180 mBackground = getResources().getDrawable(R.drawable.bg_cling3); 182 mBackground = getResources().getDrawable(R.drawable.bg_cling4); 185 if (mBackground != null) { 186 mBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight()); 187 mBackground.draw(c) [all...] |
Workspace.java | 106 private Drawable mBackground; 392 mBackground = res.getDrawable(R.drawable.apps_customize_bg); [all...] |
/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 | 46 private Drawable mBackground; 64 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground); 82 setBackgroundDrawable(mBackground);
|
/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 mBackground = bg; 156 if (mBackground != null) { 157 mBackground.draw(canvas); 227 if (mBackground != null) { 228 mBackground.setBounds(mActionBarView.getLeft(), mActionBarView.getTop(),
|
RotarySelector.java | 59 private Bitmap mBackground; 181 mBackground = getBitmapFor(R.drawable.jog_dial_bg); 195 mBackgroundWidth = mBackground.getWidth(); 196 mBackgroundHeight = mBackground.getHeight(); 309 canvas.drawBitmap(mBackground, mBgMatrix, mPaint);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ImageWallpaper.java | 103 Bitmap mBackground; 151 mBackground = null; 306 if (mBackground == null) { 326 mBackground = null; 334 mBackground = mWallpaperManager.getBitmap(); 342 mBackground = null; 355 mBackgroundWidth = mBackground != null ? mBackground.getWidth() : 0; 356 mBackgroundHeight = mBackground != null ? mBackground.getHeight() : 0 [all...] |
/frameworks/base/core/java/android/widget/ |
PopupWindow.java | 113 private Drawable mBackground; 185 mBackground = a.getDrawable(R.styleable.PopupWindow_popupBackground); 200 if (mBackground instanceof StateListDrawable) { 201 StateListDrawable background = (StateListDrawable) mBackground; 313 return mBackground; 323 mBackground = background; 904 if (mBackground != null) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PreviewIconFactory.java | 76 private RGB mBackground; 93 mBackground = null; 285 if (mBackground == null) { 304 assert mBackground != null; 542 mBackground = bg; 553 if (mBackground == null) { 557 return mBackground; 573 if (mBackground != null) { 582 if (mBackground != null) { 609 mBackground = ImageUtils.intToRgb(rgb) [all...] |
PaletteControl.java | 182 private Color mBackground; 314 if (mBackground != null) { 315 mBackground.dispose(); 316 mBackground = null; 420 if (mBackground != null) { 421 mBackground.dispose(); 422 mBackground = null; 426 mBackground = new Color(getDisplay(), background); 484 if (mPaletteMode.isPreview() && mBackground != null) { 485 wrapper.setBackground(mBackground); [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningState.java | 229 boolean mBackground; 472 mBackground = background; 474 if (!mBackground) { [all...] |