Lines Matching refs:mBackgroundBitmap
121 private Bitmap mBackgroundBitmap; field in ComplicationSimpleWatchFaceService.Engine
196 mBackgroundBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.bg); in initializeBackground()
249 Palette.from(mBackgroundBitmap).generate( in initializeWatchFace()
506 float scale = ((float) width) / (float) mBackgroundBitmap.getWidth(); in onSurfaceChanged()
508 mBackgroundBitmap = Bitmap.createScaledBitmap(mBackgroundBitmap, in onSurfaceChanged()
509 (int) (mBackgroundBitmap.getWidth() * scale), in onSurfaceChanged()
510 (int) (mBackgroundBitmap.getHeight() * scale), true); in onSurfaceChanged()
529 mBackgroundBitmap.getWidth(), in initGrayBackgroundBitmap()
530 mBackgroundBitmap.getHeight(), in initGrayBackgroundBitmap()
538 canvas.drawBitmap(mBackgroundBitmap, 0, 0, grayPaint); in initGrayBackgroundBitmap()
562 canvas.drawBitmap(mBackgroundBitmap, 0, 0, mBackgroundPaint); in drawBackground()