Lines Matching refs:mBackgroundBitmap
90 private Bitmap mBackgroundBitmap; field in SweepWatchFaceService.Engine
122 mBackgroundBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.bg); in onCreate()
159 mBackgroundBitmap, in onCreate()
280 float scale = ((float) width) / (float) mBackgroundBitmap.getWidth(); in onSurfaceChanged()
282 mBackgroundBitmap = Bitmap.createScaledBitmap(mBackgroundBitmap, in onSurfaceChanged()
283 (int) (mBackgroundBitmap.getWidth() * scale), in onSurfaceChanged()
284 (int) (mBackgroundBitmap.getHeight() * scale), true); in onSurfaceChanged()
303 mBackgroundBitmap.getWidth(), in initGrayBackgroundBitmap()
304 mBackgroundBitmap.getHeight(), in initGrayBackgroundBitmap()
312 canvas.drawBitmap(mBackgroundBitmap, 0, 0, grayPaint); in initGrayBackgroundBitmap()
328 canvas.drawBitmap(mBackgroundBitmap, 0, 0, mBackgroundPaint); in onDraw()