1
我有一個正在倒計時的應用程序。我想在通知欄中收到通知,但時間到了。我無法通過通知欄進入應用程序
我已經做到了這一點:
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);
當我嘗試通過點擊通知進入應用程序出現問題。 當顯示通知時,我點擊它,但它什麼也沒有做。
如何解決這個問題? 感謝您的幫助! :)
你嘗試谷歌「android打開活動從通知」? – Eran 2013-03-24 21:19:20