在應用裡使用了後台服務,並且在通知欄推送了訊息,希望點擊這個訊息回到activity,
結果總是存在好幾個同樣的activity,就算要返回的activity正在前台,點擊訊息後也會重新開啟一個一樣的activity,返回好幾次才能退出,
而不能像qq之類的點擊通知欄訊息回到之前存在的activity,如果存在就不再建立一個activity
說的有點繞,如果是遇到此類問題的肯定能懂,沒遇到過的估計看不懂我這混亂的表達了.....
經過查閱資料,通過如下方式解決了,
其實主要功勞就是第10行,
public void shownotification(String msg) { NotificationManager barmanager=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE); Notification notice = new Notification(android.R.drawable.stat_notify_chat,"伺服器發來資訊了",System.currentTimeMillis()); notice.flags=Notification.FLAG_AUTO_CANCEL; Intent appIntent = new Intent(Intent.ACTION_MAIN); //appIntent.setAction(Intent.ACTION_MAIN); appIntent.addCategory(Intent.CATEGORY_LAUNCHER); appIntent.setComponent(new ComponentName(this.getPackageName(), this.getPackageName() + "." + this.getLocalClassName())); appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK| Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);//關鍵的一步,設定啟動模式 PendingIntent contentIntent =PendingIntent.getActivity(this, 0,appIntent,0); notice.setLatestEventInfo(this,"通知","資訊:"+msg, contentIntent); barmanager.notify(STATUS_BAR_ID,notice); }