You can use AlarmManager + Notification.
Something like this:
Random r = new Random();
int ID = r.nextInt();
PendingIntent sender = PendingIntent.getBroadcast(MainNote.this, ID, intent, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, time, sender);
serviceIntent = new Intent(this, AlarmService.class);
this.startService(serviceIntent);
It starts alarm.
public class AlarmReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent toLaunch = new Intent(context, activityToLaunch);
toLaunch.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
toLaunch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Random r = new Random();
int NOTIFY_1 = r.nextInt();
PendingIntent intentBack = PendingIntent.getActivity(context, NOTIFY_1, toLaunch, 0);
notify.setLatestEventInfo(caller, title, msg, intentBack);
notifier.notify(NOTIFY_1, notify);
}
}
It receive your alarm and start show Notification, click on those invoke activityToLaunch