Home | History | Annotate | Download | only in app

Lines Matching defs:notification

20 import android.app.Notification;
73 // Display a notification about us starting.
84 // Cancel the persistent notification.
175 * Show a notification while this service is running.
178 // In this sample, we'll use the same text for the ticker and the expanded notification
182 Notification notification = new Notification(R.drawable.stat_sample, text,
185 // The PendingIntent to launch our activity if the user selects this notification
189 // Set the info for the views that show in the notification panel.
190 notification.setLatestEventInfo(this, getText(R.string.remote_service_label),
193 // Send the notification.
195 mNM.notify(R.string.remote_service_started, notification);
413 // Just for purposes of the sample, put up a notification.