Home
last modified time | relevance | path

Searched refs:mNotificationBuilder (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ingest/
DIngestService.java79 private NotificationCompat.Builder mNotificationBuilder; field in IngestService
88 mNotificationBuilder = new NotificationCompat.Builder(this); in onCreate()
90 mNotificationBuilder.setSmallIcon(android.R.drawable.stat_notify_sync) in onCreate()
133 mNotificationBuilder.setContentTitle(mDevicePrettyName); in setDevice()
157 mNotificationBuilder.setProgress(0, 0, false) in setClientActivity()
160 mNotificationBuilder.build()); in setClientActivity()
197 mNotificationBuilder.setProgress(0, 0, true) in importSelectedItems()
200 mNotificationBuilder.build()); in importSelectedItems()
232 mNotificationBuilder.setProgress(totalCount, visitedCount, false) in onImportProgress()
235 mNotificationBuilder.build()); in onImportProgress()
[all …]
/packages/apps/Camera2/src/com/android/camera/processing/
DProcessingService.java77 private Notification.Builder mNotificationBuilder; field in ProcessingService
116 mNotificationBuilder = createInProgressNotificationBuilder(); in onCreate()
140 startForeground(CAMERA_NOTIFICATION_ID, mNotificationBuilder.build()); in onStartCommand()
243 mNotificationBuilder.setContentText("…").setProgress(100, 0, false); in resetNotification()
255 mNotificationManager.notify(CAMERA_NOTIFICATION_ID, mNotificationBuilder.build()); in postNotification()
271 mNotificationBuilder.setProgress(100, progress, false); in onProgressChanged()
277 mNotificationBuilder.setContentText(messageId > 0 ? getString(messageId) : ""); in onStatusMessageChanged()
/packages/apps/FMRadio/src/com/android/fmradio/
DFmService.java216 private Notification.Builder mNotificationBuilder = null; field in FmService
1767 if (null == mNotificationBuilder) { in showPlayingNotification()
1768 mNotificationBuilder = new Notification.Builder(mContext); in showPlayingNotification()
1769 mNotificationBuilder.setSmallIcon(R.drawable.ic_launcher); in showPlayingNotification()
1770 mNotificationBuilder.setShowWhen(false); in showPlayingNotification()
1771 mNotificationBuilder.setAutoCancel(true); in showPlayingNotification()
1776 mNotificationBuilder.addAction(R.drawable.btn_fm_prevstation, "", pIntent); in showPlayingNotification()
1780 mNotificationBuilder.addAction(R.drawable.btn_fm_rec_stop_enabled, "", pIntent); in showPlayingNotification()
1784 mNotificationBuilder.addAction(R.drawable.btn_fm_nextstation, "", pIntent); in showPlayingNotification()
1786 mNotificationBuilder.setContentIntent(pAIntent); in showPlayingNotification()
[all …]
DFmRecordActivity.java79 private Notification.Builder mNotificationBuilder = null; field in FmRecordActivity
166 if (mNotificationBuilder == null) { in updateRecordingNotification()
175 mNotificationBuilder = new Builder(this) in updateRecordingNotification()
189 mNotificationBuilder.setContentIntent(contentPendingIntent); in updateRecordingNotification()
196 mNotificationBuilder.setContentTitle(time); in updateRecordingNotification()
198 mService.showRecordingNotification(mNotificationBuilder.build()); in updateRecordingNotification()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBugleNotifications.java466 state.mNotificationBuilder = notifBuilder; in processAndSend()
697 notificationState.mNotificationBuilder in sendNotification()
706 notificationState.mNotificationBuilder.setLargeIcon(avatarIcon); in sendNotification()
712 notificationState.mNotificationBuilder.addPerson(contactUri.toString()); in sendNotification()
784 final NotificationCompat.Builder notifBuilder = notificationState.mNotificationBuilder; in fireOffNotification()
817 notificationState.mNotificationBuilder.setLargeIcon(smallBitmap); in fireOffNotification()
DNotificationState.java64 public NotificationCompat.Builder mNotificationBuilder; field in NotificationState