Searched refs:AlarmController (Results 1 – 1 of 1) sorted by relevance
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | AlarmController.java | 68 public class AlarmController extends Activity { class 95 Intent intent = new Intent(AlarmController.this, OneShotAlarm.class); 96 PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this, 121 mToast = Toast.makeText(AlarmController.this, R.string.one_shot_scheduled, 136 Intent intent = new Intent(AlarmController.this, RepeatingAlarm.class); 137 PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this, 153 mToast = Toast.makeText(AlarmController.this, R.string.repeating_scheduled, 163 Intent intent = new Intent(AlarmController.this, RepeatingAlarm.class); 164 PendingIntent sender = PendingIntent.getBroadcast(AlarmController.this, 175 mToast = Toast.makeText(AlarmController.this, R.string.repeating_unscheduled,
|