Lines Matching full:notification
18 * A numeric value that identifies the notification that we'll be sending.
31 * Send a sample notification using the NotificationCompat API.
36 /** Create an intent that will be fired when the user clicks the notification.
38 * notification service can fire it on our behalf.
41 Uri.parse("http://developer.android.com/reference/android/app/Notification.html"));
47 * Use NotificationCompat.Builder to set up our notification.
51 /** Set the icon that will appear in the notification bar. This icon also appears
52 * in the lower right hand corner of the notification itself.
61 // Set the intent that will fire when the user taps the notification.
64 // Set the notification to auto-cancel. This means that the notification will disappear
69 *Build the notification's appearance.
70 * Set the large icon, which appears on the left of the notification. In this
77 * Set the text of the notification. This sample sets the three most commononly used
79 * 1. The content title, which appears in large type at the top of the notification
93 * Send the notification. This will immediately display the notification icon in the
94 * notification bar.