Lines Matching full:builder
47 * Use NotificationCompat.Builder to set up our notification.
49 NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
59 builder.setSmallIcon(R.drawable.ic_stat_notification);
62 builder.setContentIntent(pendingIntent);
66 builder.setAutoCancel(true);
74 builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
85 builder.setContentTitle("BasicNotifications Sample");
86 builder.setContentText("Time to learn about notifications!");
87 builder.setSubText("Tap to view documentation about notifications.");
98 notificationManager.notify(NOTIFICATION_ID, builder.build());