Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertReceiver.java277 private static Notification buildBasicNotification(Notification.Builder notificationBuilder, in buildBasicNotification() argument
296 notificationBuilder.setContentTitle(title); in buildBasicNotification()
297 notificationBuilder.setContentText(summaryText); in buildBasicNotification()
298 notificationBuilder.setSmallIcon(R.drawable.stat_notify_calendar); in buildBasicNotification()
299 notificationBuilder.setContentIntent(clickIntent); in buildBasicNotification()
300 notificationBuilder.setDeleteIntent(deleteIntent); in buildBasicNotification()
302 notificationBuilder.setFullScreenIntent(createAlertActivityIntent(context), true); in buildBasicNotification()
327 notificationBuilder.setWhen(0); in buildBasicNotification()
331 notificationBuilder.setPriority(priority); in buildBasicNotification()
343 notificationBuilder.addAction(R.drawable.ic_map, in buildBasicNotification()
[all …]
/packages/apps/Stk/src/com/android/stk/
DStkAppService.java769 final Notification.Builder notificationBuilder = new Notification.Builder( in launchIdleText() local
771 notificationBuilder.setContentTitle(""); in launchIdleText()
772 notificationBuilder in launchIdleText()
774 notificationBuilder.setContentIntent(pendingIntent); in launchIdleText()
775 notificationBuilder.setOngoing(true); in launchIdleText()
778 notificationBuilder.setContentText(msg.text); in launchIdleText()
781 notificationBuilder.setLargeIcon(msg.icon); in launchIdleText()
786 notificationBuilder.setLargeIcon(bitmapIcon); in launchIdleText()
789 mNotificationManager.notify(STK_NOTIFICATION_ID, notificationBuilder.build()); in launchIdleText()
/packages/apps/Dialer/src/com/android/dialer/calllog/
DDefaultVoicemailNotifier.java155 Notification.Builder notificationBuilder = new Notification.Builder(mContext) in updateNotification() local
177 notificationBuilder.addAction(R.drawable.ic_play_holo_dark, in updateNotification()
184 notificationBuilder.setContentIntent( in updateNotification()
189 notificationBuilder.setTicker(resources.getString( in updateNotification()
193 mNotificationManager.notify(NOTIFICATION_TAG, NOTIFICATION_ID, notificationBuilder.build()); in updateNotification()