Searched refs:bitmapDrawable (Results 1 – 8 of 8) sorted by relevance
61 BitmapDrawable bitmapDrawable = null; in onDraw() local65 bitmapDrawable = (BitmapDrawable) drawable.getCurrent(); in onDraw()68 bitmapDrawable = (BitmapDrawable) drawable; in onDraw()71 if (bitmapDrawable == null) { in onDraw()74 Bitmap bitmap = bitmapDrawable.getBitmap(); in onDraw()
49 Drawable bitmapDrawable = mContext.getResources() in setBackgroundDrawableSameAsSetWindowBackground() local55 mDecorView.setWindowBackground(bitmapDrawable); in setBackgroundDrawableSameAsSetWindowBackground()62 mDecorView.setBackgroundDrawable(bitmapDrawable); in setBackgroundDrawableSameAsSetWindowBackground()70 assertThat(mDecorView.getBackground()).isEqualTo(bitmapDrawable); in setBackgroundDrawableSameAsSetWindowBackground()
81 BitmapDrawable bitmapDrawable = (BitmapDrawable) icon; in createIconBitmap() local82 Bitmap bitmap = bitmapDrawable.getBitmap(); in createIconBitmap()84 bitmapDrawable.setTargetDensity(mDisplayMetrics); in createIconBitmap()
440 private Bitmap getBitmapFromDrawable(BitmapDrawable bitmapDrawable) { in getBitmapFromDrawable() argument441 Bitmap bitmap = bitmapDrawable.getBitmap(); in getBitmapFromDrawable()442 final int scaledWidth = bitmapDrawable.getIntrinsicWidth(); in getBitmapFromDrawable()443 final int scaledHeight = bitmapDrawable.getIntrinsicHeight(); in getBitmapFromDrawable()525 BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable; in loadResource() local526 final Bitmap bitmap = getBitmapFromDrawable(bitmapDrawable); in loadResource()
302 BitmapDrawable bitmapDrawable = (BitmapDrawable) icon; in createIconBitmap() local303 Bitmap b = bitmapDrawable.getBitmap(); in createIconBitmap()305 bitmapDrawable.setTargetDensity(mContext.getResources().getDisplayMetrics()); in createIconBitmap()
373 BitmapDrawable bitmapDrawable = (BitmapDrawable) icon; in createIconBitmap() local374 Bitmap b = bitmapDrawable.getBitmap(); in createIconBitmap()376 bitmapDrawable.setTargetDensity(mContext.getResources().getDisplayMetrics()); in createIconBitmap()
1112 BitmapDrawable bitmapDrawable = new BitmapDrawable(mContext.getResources(), bitmap);1119 return bitmapDrawable;1122 InsetDrawable insetDrawable = new InsetDrawable(bitmapDrawable,
3004 BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable; in getBadgedDrawable() local3005 mergedDrawable.setTargetDensity(bitmapDrawable.getBitmap().getDensity()); in getBadgedDrawable()