時間をカウントダウンしているアプリがあります。時間切れに通知バーに通知を受け取りたいのですが。
私はすでにこれをしました:
Intent intent = new Intent();
PendingIntent pIntent = PendingIntent.getActivity(this, 0, intent, 0);
Notification noti = new Notification.Builder(this).setTicker("Ticker Title").setContentTitle("Content Title").setContentText("Notification content.").setSmallIcon(R.drawable.iconnotif).setContentIntent(pIntent).getNotification();
noti.flags=Notification.FLAG_AUTO_CANCEL;
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(uniqueID, noti);
通知をクリックしてアプリに入ろうとすると、問題が発生します。通知が表示されたらクリックしますが、何もしません。
この問題を解決する方法は?手伝ってくれてありがとう!:)