Home | History | Annotate | Download | only in transaction

Lines Matching defs:avatar

863         Bitmap avatar = null;
879 // Show the sender's avatar as the big icon. Contact bitmaps are 96x96 so we
881 avatar = contactDrawable.getBitmap();
882 if (avatar != null) {
887 if (avatar.getHeight() < idealIconHeight) {
889 avatar = Bitmap.createScaledBitmap(
890 avatar, idealIconWidth, idealIconHeight, true);
892 if (avatar != null) {
893 noti.setLargeIcon(avatar);
1014 // kicked the smallIcon out with an avatar bitmap
1015 .setSummaryText((avatar == null) ? null : " ")