/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/Launcher2/src/com/android/launcher2/ |
BubbleTextView.java | 66 private Drawable mBackground; 86 mBackground = getBackground(); 119 return who == mBackground || super.verifyDrawable(who); 155 Drawable d = mBackground; 272 final Drawable background = mBackground; 304 if (mBackground != null) mBackground.setCallback(this); 310 if (mBackground != null) mBackground.setCallback(null);
|
Cling.java | 52 private Drawable mBackground; 107 mBackground = null; 163 if (mBackground == null) { 166 mBackground = getResources().getDrawable(R.drawable.bg_cling1); 169 mBackground = getResources().getDrawable(R.drawable.bg_cling2); 172 mBackground = getResources().getDrawable(R.drawable.bg_cling3); 175 if (mBackground != null) { 176 mBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight()); 177 mBackground.draw(c);
|
Workspace.java | 104 private Drawable mBackground; 354 mBackground = res.getDrawable(R.drawable.apps_customize_bg); [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 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);
|
/packages/apps/Email/src/com/android/email/activity/ |
MailboxListItem.java | 55 private Drawable mBackground; 82 mBackground = getBackground(); 160 setBackgroundDrawable(mBackground);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ImageWallpaper.java | 103 Bitmap mBackground; 151 mBackground = null; 304 if (mBackground == null) { 324 mBackground = null; 332 mBackground = mWallpaperManager.getBitmap(); 340 mBackground = null; 353 mBackgroundWidth = mBackground != null ? mBackground.getWidth() : 0; 354 mBackgroundHeight = mBackground != null ? mBackground.getHeight() : 0 [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...] |
/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;
|
/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);
|
/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...] |
/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 | 45 private Drawable mBackground; 63 mBackground = a.getDrawable(com.android.internal.R.styleable.MenuView_itemBackground); 81 setBackgroundDrawable(mBackground);
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationsStackLayout.java | 83 private Drawable mBackground; 116 mBackground = getBackground(); 132 final Drawable background = mBackground;
|
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningProcessesView.java | 109 if (mItem.mBackground) { 180 if (item.mBackground) {
|
RunningServiceDetails.java | 177 } else if (mActiveItem.mItem.mBackground) { 244 if (mi.mBackground) {
|
RunningState.java | 229 boolean mBackground; 472 mBackground = background; 474 if (!mBackground) { [all...] |