我有三個屏幕像登錄,第二和第三。基於我的條件,我生成一個狀態欄通知。如果用戶點擊我想要顯示第三個屏幕的通知。它工作正常。但是當我直接重新啓動應用程序第三個屏幕即將到來。我想在點擊通知時顯示第三個屏幕。其他方面,我的第一個屏幕應該是登錄頁面。如何處理狀態欄通知?
我可以使用下面的代碼
public void showNotification()
{
NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.ic_launcher, "A New Message!", System.currentTimeMillis());
Intent notificationIntent = new Intent(Preferences.this,PendingOffers.class);
PendingIntent pendingIntent = PendingIntent.getActivity(Preferences.this, 0, notificationIntent, 0);
notification.setLatestEventInfo(Preferences.this,"sample notification", "notificationMessage", pendingIntent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);
};
請在用戶點擊通知時,關於您如何呼叫第三個屏幕的部分代碼。所以我們可以幫助你。 –