Lines Matching refs:largeIcon
305 final Bitmap largeIcon = getLargeIconToDisplay(contactInfo, isConference);
310 if (!checkForChangeAndSaveData(iconResId, contentResId, largeIcon, contentTitle, state,
333 builder.setLargeIcon(largeIcon);
363 private boolean checkForChangeAndSaveData(int icon, int content, Bitmap largeIcon,
375 (mCallState != state) || (mSavedLargeIcon != largeIcon) ||
394 mSavedLargeIcon = largeIcon;
422 Bitmap largeIcon = null;
424 largeIcon = BitmapFactory.decodeResource(mContext.getResources(),
428 largeIcon = ((BitmapDrawable) contactInfo.photo).getBitmap();
431 if (largeIcon != null) {
436 largeIcon = Bitmap.createScaledBitmap(largeIcon, width, height, false);
439 return largeIcon;