通知にタップアクション(exit(終了))を追加したい。いくつかのクラスを持つ単純なアプリを作成しています。通知をタップすると、すべてが終了します。ここに私の通知コードがあります:
mMN = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification n = new Notification();
n.icon = R.drawable.ic_launcher;
n.tickerText = "Tap this notification to exit";
n.when = System.currentTimeMillis();
Intent nid = new Intent(MainActivity.this, stopservice.class);
PendingIntent ci = PendingIntent.getActivity(this, 0, nid,PendingIntent.FLAG_UPDATE_CURRENT);
CharSequence ct = "TAP";
CharSequence tt = "Tap here to exit";
n.setLatestEventInfo(this,ct,tt,ci);
mMN.notify(NOTIFICATION_ID, n);
stopservice class
で (停止サービス コードの場所) を参照していますがIntent nid
、それが正しい参照かどうかはよくわかりません。
私の質問が明確であることを願っています。