やることリストのようなアプリを作っています。ここで、特定の「やること」イベントが1日先にあるときに、アプリに通知を表示させたいと思います。アプリが実行されていなくても通知をポップアップさせたい。どうすればこれを達成できますか?通知に関する公式の開発者向けドキュメントを読んでも、それがはっきりとはわかりません。
質問する
1230 次
2 に答える
1
多分これはそれを少しクリアすることができます:http://blog.blundell-apps.com/notification-for-a-user-chosen-time/
ToDoデータの前日に通知が必要な場合は、日付からマイナス1日だけです。
1)アラームを設定する
getSystemService(Context.ALARM_SERVICE).set(AlarmManager.RTC, date.getTimeInMillis(), pendingIntent);
2)キャッチアラーム
3)通知を表示する
// This is the 'title' of the notification
CharSequence title = "Alarm!!";
// This is the icon to use on the notification
int icon = R.drawable.ic_dialog_alert;
// This is the scrolling text of the notification
CharSequence text = "Your notification time is upon us.";
// What time to show on the notification
long time = System.currentTimeMillis();
Notification notification = new Notification(icon, text, time);
// The PendingIntent to launch our activity if the user selects this notification
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, SecondActivity.class), 0);
// Set the info for the views that show in the notification panel.
notification.setLatestEventInfo(this, title, text, contentIntent);
// Clear the notification when it is pressed
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// Send the notification to the system.
mNM.notify(NOTIFICATION, notification);
于 2012-12-28T09:34:21.930 に答える
1
を作成し、Android Service
を使用しwakeful intent service
てアラームをスケジュールできます。アラームをキャッチすると、アラートボックスを表示できます。
コードについては、以下のリンクを参照してください。
于 2012-12-28T09:43:31.867 に答える