Lines Matching refs:mBackgroundBitmap
99 private Bitmap mBackgroundBitmap; field in AnalogWatchFaceService.Engine
150 mBackgroundBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.bg); in onCreate()
187 mBackgroundBitmap, in onCreate()
315 float scale = ((float) width) / (float) mBackgroundBitmap.getWidth(); in onSurfaceChanged()
317 mBackgroundBitmap = Bitmap.createScaledBitmap(mBackgroundBitmap, in onSurfaceChanged()
318 (int) (mBackgroundBitmap.getWidth() * scale), in onSurfaceChanged()
319 (int) (mBackgroundBitmap.getHeight() * scale), true); in onSurfaceChanged()
338 mBackgroundBitmap.getWidth(), in initGrayBackgroundBitmap()
339 mBackgroundBitmap.getHeight(), in initGrayBackgroundBitmap()
347 canvas.drawBitmap(mBackgroundBitmap, 0, 0, grayPaint); in initGrayBackgroundBitmap()
363 canvas.drawBitmap(mBackgroundBitmap, 0, 0, mBackgroundPaint); in onDraw()