Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertReceiver.java95 private static Notification buildBasicNotification(Notification.Builder notificationBuilder, in buildBasicNotification() argument
105 notificationBuilder.setContentTitle(title); in buildBasicNotification()
106 notificationBuilder.setContentText(summaryText); in buildBasicNotification()
107 notificationBuilder.setSmallIcon(R.drawable.stat_notify_calendar); in buildBasicNotification()
110 notificationBuilder.setWhen(0); in buildBasicNotification()
114 notificationBuilder.setPriority(priority); in buildBasicNotification()
116 return notificationBuilder.getNotification(); in buildBasicNotification()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationUtils.java967 final NotificationCompat.Builder notificationBuilder, in configureLatestEventInfoFromConversation() argument
996 notificationBuilder.setContentTitle(newMessagesString); in configureLatestEventInfoFromConversation()
1005 notificationBuilder.setSubText( in configureLatestEventInfoFromConversation()
1009 new NotificationCompat.InboxStyle(notificationBuilder); in configureLatestEventInfoFromConversation()
1015 notificationBuilder.setGroup(notificationGroupKey).setGroupSummary(true); in configureLatestEventInfoFromConversation()
1133 tagNotificationsWithPeople(notificationBuilder, senderAddressesSet); in configureLatestEventInfoFromConversation()
1143 notificationBuilder.setContentText( in configureLatestEventInfoFromConversation()
1154 folderPreferences, notificationBuilder, wearableExtender, conversationCursor, in configureLatestEventInfoFromConversation()
1175 notificationBuilder.setTicker(notificationTicker); in configureLatestEventInfoFromConversation()
1180 notificationBuilder.setNumber(unreadCount); in configureLatestEventInfoFromConversation()
[all …]
/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DNotificationUtils.java103 final Notification.Builder notificationBuilder = in onReceiveDirectReply() local
105 notificationBuilder.setContentText("Content Title") in onReceiveDirectReply()
110 .notify(notificationId, notificationBuilder.build()); in onReceiveDirectReply()
/packages/apps/Stk/src/com/android/stk/
DStkAppService.java2133 final Notification.Builder notificationBuilder = new Notification.Builder( in launchIdleText() local
2137 notificationBuilder.setContentTitle(mStkContext[slotId].mMainCmd.getMenu().title); in launchIdleText()
2139 notificationBuilder.setContentTitle(""); in launchIdleText()
2141 notificationBuilder in launchIdleText()
2143 notificationBuilder.setContentIntent(pendingIntent); in launchIdleText()
2144 notificationBuilder.setOngoing(true); in launchIdleText()
2145 notificationBuilder.setOnlyAlertOnce(true); in launchIdleText()
2149 notificationBuilder.setContentText(msg.text); in launchIdleText()
2150 notificationBuilder.setTicker(msg.text); in launchIdleText()
2151 notificationBuilder.setStyle(new Notification.BigTextStyle(notificationBuilder) in launchIdleText()
[all …]
/packages/apps/Dialer/java/com/android/incallui/spam/
DSpamCallListListener.java275 Notification.Builder notificationBuilder = in showNonSpamCallNotification() local
305 context, getNotificationTagForCall(call), NOTIFICATION_ID, notificationBuilder.build()); in showNonSpamCallNotification()
394 Notification.Builder notificationBuilder = in showSpamCallNotification() local
423 context, getNotificationTagForCall(call), NOTIFICATION_ID, notificationBuilder.build()); in showSpamCallNotification()