Home | History | Annotate | Download | only in transaction

Lines Matching defs:notification

23 import android.app.Notification;
33 * Receive Intent.SIM_FULL_ACTION. Handle notification that SIM is full.
52 Notification notification = new Notification();
53 notification.icon = R.drawable.stat_sys_no_sim;
54 notification.tickerText = context.getString(R.string.sim_full_title);
55 notification.defaults = Notification.DEFAULT_ALL;
57 notification.setLatestEventInfo(
61 nm.notify(ManageSimMessages.SIM_FULL_NOTIFICATION_ID, notification);