android開發之Intent.setFlags()_讓Android點擊通知欄資訊後返回正在啟動並執行程式

來源:互聯網
上載者:User

在應用裡使用了後台服務,並且在通知欄推送了訊息,希望點擊這個訊息回到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);           }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.