Home
last modified time | relevance | path

Searched refs:letterTileDrawable (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/shortcuts/
DIconFactory.java100 LetterTileDrawable letterTileDrawable = new LetterTileDrawable(context.getResources()); in createAdaptiveIcon() local
103 letterTileDrawable.setScale(1f / (1f + AdaptiveIconDrawable.getExtraInsetFraction())); in createAdaptiveIcon()
104 letterTileDrawable.setCanonicalDialerLetterTileDetails( in createAdaptiveIcon()
115 DrawableConverter.drawableToBitmap(letterTileDrawable, iconSize, iconSize)); in createAdaptiveIcon()
126 LetterTileDrawable letterTileDrawable = new LetterTileDrawable(context.getResources()); in createFlatIcon() local
127 letterTileDrawable.setCanonicalDialerLetterTileDetails( in createFlatIcon()
129 drawable = letterTileDrawable; in createFlatIcon()
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DTelecomUtils.java313 LetterTileDrawable letterTileDrawable = createLetterTile(context, displayName); in setContactBitmapAsync() local
318 .apply(new RequestOptions().centerCrop().error(letterTileDrawable)) in setContactBitmapAsync()
325 icon.setImageDrawable(letterTileDrawable); in setContactBitmapAsync()
330 LetterTileDrawable letterTileDrawable = new LetterTileDrawable(context.getResources()); in createLetterTile() local
331 letterTileDrawable.setContactDetails(displayName, displayName); in createLetterTile()
332 return letterTileDrawable; in createLetterTile()
/packages/apps/Car/Dialer/src/com/android/car/dialer/notification/
DNotificationUtils.java84 LetterTileDrawable letterTileDrawable = TelecomUtils.createLetterTile(context, displayName); in createLetterTile() local
85 letterTileDrawable.setIsCircular(true); in createLetterTile()
86 return Icon.createWithBitmap(letterTileDrawable.toBitmap(avatarSize)); in createLetterTile()
/packages/apps/Dialer/java/com/android/dialer/glidephotomanager/impl/
DGlidePhotoManagerImpl.java127 LetterTileDrawable letterTileDrawable = new LetterTileDrawable(appContext.getResources()); in getDefaultDrawable() local
141 letterTileDrawable.setCanonicalDialerLetterTileDetails( in getDefaultDrawable()
151 return letterTileDrawable; in getDefaultDrawable()
/packages/apps/Car/Messenger/src/com/android/car/messenger/
DMessengerDelegate.java365 LetterTileDrawable letterTileDrawable = new LetterTileDrawable(mContext.getResources()); in letterTileBitmap() local
366 letterTileDrawable.setContactDetails(senderName, senderName); in letterTileBitmap()
367 letterTileDrawable.setIsCircular(true); in letterTileBitmap()
372 return letterTileDrawable.toBitmap(bitmapSize); in letterTileBitmap()