アプリで通知を設定しました。その正常に動作します。通知をクリックするstatusbar
と、アプリが表示されます。
通知がクリックされた場合、どこで設定できますか? 通知がクリックされたときに暗黙的に呼び出されるメソッドはありますか?
また、クリックされた場合にその通知を削除したいのですが、どうすればよいですか?
これは私のコードです
notifManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Intent inty=getIntent();
note = new Notification(R.drawable.icon, "New E-mail", System.currentTimeMillis());
PendingIntent intent = PendingIntent.getActivity(MainActivity.this, 0, inty, 0);
note.setLatestEventInfo(MainActivity.this, "New E-mail", "You have one unread message.", intent);
notifManager.notify(R.string.search_hint, note);