在Android應用程序開發(fā)的時候,從一個activity啟動另一個Activity并傳遞一些數(shù)據(jù)到新的Activity上非常簡單,但是當您需要讓后臺運行的Activity回到前臺并傳遞一些數(shù)據(jù)可能就會存在一點點小問題。

創(chuàng)新互聯(lián)成都企業(yè)網(wǎng)站建設服務,提供網(wǎng)站設計、網(wǎng)站建設網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設計,成都響應式網(wǎng)站建設公司,網(wǎng)頁設計師打造企業(yè)風格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務。歡迎咨詢做網(wǎng)站需要多少錢:18982081108
首先,在默認情況下,當您通過Intent啟到一個Activity的時候,就算已經(jīng)存在一個相同的正在運行的Activity,系統(tǒng)都會創(chuàng)建一個新的Activity實例并顯示出來。為了不讓Activity實例化多次,我們需要通過在AndroidManifest.xml配置activity的加載方式(launchMode)以實現(xiàn)單任務模式,如下所示:
1 | "@string/app_name" android:launchmode="singleTask"android:name="Activity1"> |
launchMode為singleTask的時候,通過Intent啟到一個Activity,如果系統(tǒng)已經(jīng)存在一個實例,系統(tǒng)就會將請求發(fā)送到這個實例上,但這個時候,系統(tǒng)就不會再調用通常情況下我們處理請求數(shù)據(jù)的onCreate方法,而是調用onNewIntent方法,如下所示:
1 | protected void onNewIntent(Intent intent) { |
2 | super.onNewIntent(intent); |
3 | setIntent(intent);//must store the new intent unless getIntent() will return the old one |
不要忘記,系統(tǒng)可能會隨時殺掉后臺運行的Activity,如果這一切發(fā)生,那么系統(tǒng)就會調用onCreate方法,而不調用onNewIntent方法,一個好的解決方法就是在onCreate和onNewIntent方法中調用同一個處理數(shù)據(jù)的方法,如下所示:
01 | public void onCreate(Bundle savedInstanceState) { |
02 | super.onCreate(savedInstanceState); |
03 | setContentView(R.layout.main); |
07 | protected void onNewIntent(Intent intent) { |
08 | super.onNewIntent(intent); |
09 | setIntent(intent);//must store the new intent unless getIntent() will return the old one |
13 | private void processExtraData(){ |
14 | Intent intent = getIntent(); |
15 | //use the data received here |
【編輯推薦】
- Android學習筆記:Activity跳轉
- Intent,Android應用核心探秘
- 闡述Android Intent使用整理問題
- Android Activity進行全解析
- Android Activity跳轉相關操作技巧分享
網(wǎng)站欄目:Android應用開發(fā)教程:兩個運行的Activity之間的通信
網(wǎng)站路徑:
http://www.jiaotiyi.com/article/cogocgi.html