Home
last modified time | relevance | path

Searched refs:roundedBitmapDrawable (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/contact/
H A DContactDetailsFragment.java160 RoundedBitmapDrawable roundedBitmapDrawable = createFromBitmap( in onContactChanged()
162 toolbar.setLogo(roundedBitmapDrawable); in onContactChanged()
167 RoundedBitmapDrawable roundedBitmapDrawable = createFromLetterTile( in onContactChanged()
169 toolbar.setLogo(roundedBitmapDrawable); in onContactChanged()
209 RoundedBitmapDrawable roundedBitmapDrawable = RoundedBitmapDrawableFactory.create( in createFromBitmap() local
214 roundedBitmapDrawable.setCornerRadius(radius); in createFromBitmap()
215 return roundedBitmapDrawable; in createFromBitmap()
/aosp12/packages/apps/Dialer/java/com/android/dialer/shortcuts/
H A DIconFactory.java143 RoundedBitmapDrawable roundedBitmapDrawable = in createCircularDrawable() local
145 roundedBitmapDrawable.setCircular(true); in createCircularDrawable()
146 roundedBitmapDrawable.setAntiAlias(true); in createCircularDrawable()
147 return roundedBitmapDrawable; in createCircularDrawable()
/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/notification/
H A DNotificationUtils.java68 RoundedBitmapDrawable roundedBitmapDrawable = RoundedBitmapDrawableFactory.create( in loadContactAvatar() local
73 .createFromRoundedBitmapDrawable(roundedBitmapDrawable, avatarSize, in loadContactAvatar()
/aosp12/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
H A DTelecomUtils.java622 RoundedBitmapDrawable roundedBitmapDrawable = RoundedBitmapDrawableFactory.create( in createLetterTile() local
624 return createFromRoundedBitmapDrawable(roundedBitmapDrawable, avatarSize, in createLetterTile()
629 public static Icon createFromRoundedBitmapDrawable(RoundedBitmapDrawable roundedBitmapDrawable, in createFromRoundedBitmapDrawable() argument
632 roundedBitmapDrawable.setCornerRadius(radius); in createFromRoundedBitmapDrawable()
637 roundedBitmapDrawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight()); in createFromRoundedBitmapDrawable()
638 roundedBitmapDrawable.draw(canvas); in createFromRoundedBitmapDrawable()