OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:notificationBuilder
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java
268
private static Notification buildBasicNotification(Notification.Builder
notificationBuilder
,
287
notificationBuilder
.setContentTitle(title);
288
notificationBuilder
.setContentText(summaryText);
289
notificationBuilder
.setSmallIcon(R.drawable.stat_notify_calendar);
290
notificationBuilder
.setContentIntent(clickIntent);
291
notificationBuilder
.setDeleteIntent(deleteIntent);
293
notificationBuilder
.setFullScreenIntent(createAlertActivityIntent(context), true);
318
notificationBuilder
.setWhen(0);
322
notificationBuilder
.setPriority(priority);
334
notificationBuilder
.addAction(R.drawable.ic_map
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java
156
Notification.Builder
notificationBuilder
= new Notification.Builder(mContext)
178
notificationBuilder
.addAction(R.drawable.ic_play_holo_dark,
185
notificationBuilder
.setContentIntent(
190
notificationBuilder
.setTicker(resources.getString(
194
mNotificationManager.notify(NOTIFICATION_TAG, NOTIFICATION_ID,
notificationBuilder
.build());
/packages/apps/Stk/src/com/android/stk/
StkAppService.java
781
final Notification.Builder
notificationBuilder
= new Notification.Builder(
783
notificationBuilder
.setContentTitle("");
784
notificationBuilder
786
notificationBuilder
.setContentIntent(pendingIntent);
787
notificationBuilder
.setOngoing(true);
790
notificationBuilder
.setContentText(msg.text);
793
notificationBuilder
.setLargeIcon(msg.icon);
798
notificationBuilder
.setLargeIcon(bitmapIcon);
801
mNotificationManager.notify(STK_NOTIFICATION_ID,
notificationBuilder
.build());
[
all
...]
Completed in 256 milliseconds