Home | History | Annotate | Download | only in transaction

Lines Matching refs:avatar

817         Bitmap avatar = null;
833 // Show the sender's avatar as the big icon. Contact bitmaps are 96x96 so we
835 avatar = contactDrawable.getBitmap();
836 if (avatar != null) {
841 if (avatar.getHeight() < idealIconHeight) {
843 avatar = Bitmap.createScaledBitmap(
844 avatar, idealIconWidth, idealIconHeight, true);
846 if (avatar != null) {
847 noti.setLargeIcon(avatar);
962 // kicked the smallIcon out with an avatar bitmap
963 .setSummaryText((avatar == null) ? null : " ")