Lines Matching refs:largeIcon
215 Bitmap largeIcon = getLargeIconToDisplay(contactInfo, call); in buildAndSendNotification() local
228 if (!checkForChangeAndSaveData(iconResId, content, largeIcon, contentTitle, state, in buildAndSendNotification()
233 if (largeIcon != null) { in buildAndSendNotification()
234 largeIcon = getRoundedIcon(largeIcon); in buildAndSendNotification()
257 builder.setLargeIcon(largeIcon); in buildAndSendNotification()
316 private boolean checkForChangeAndSaveData(int icon, String content, Bitmap largeIcon, in checkForChangeAndSaveData() argument
328 (mCallState != state) || (mSavedLargeIcon != largeIcon) || in checkForChangeAndSaveData()
343 mSavedLargeIcon = largeIcon; in checkForChangeAndSaveData()
383 Bitmap largeIcon = null; in getLargeIconToDisplay() local
385 largeIcon = BitmapFactory.decodeResource(mContext.getResources(), in getLargeIconToDisplay()
389 largeIcon = ((BitmapDrawable) contactInfo.photo).getBitmap(); in getLargeIconToDisplay()
391 return largeIcon; in getLargeIconToDisplay()