我有一个正在倒计时的应用程序。我想在时间到的时候在通知栏中收到通知。
我已经这样做了:
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);
当我尝试通过单击通知进入应用程序时出现问题。显示通知时,我单击它,但它什么也没做。
如何解决这个问题呢?感谢帮助!:)