如何理解Android應(yīng)用開發(fā)中兩個運(yùn)行的Activity之間的通信,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)公司長期為上千余家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為城子河企業(yè)提供專業(yè)的成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè),城子河網(wǎng)站改版等技術(shù)服務(wù)。擁有十載豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
在Android應(yīng)用程序開發(fā)的時(shí)候,從一個Activity啟動另一個Activity并傳遞一些數(shù)據(jù)到新的Activity上非常簡單,但是當(dāng)您需要讓后臺運(yùn)行的Activity回到前臺并傳遞一些數(shù)據(jù)可能就會存在一點(diǎn)點(diǎn)小問題。
首先,在默認(rèn)情況下,當(dāng)您通過Intent啟到一個Activity的時(shí)候,就算已經(jīng)存在一個相同的正在運(yùn)行的Activity,系統(tǒng)都會創(chuàng)建一個新的Activity實(shí)例并顯示出來。為了不讓Activity實(shí)例化多次,我們需要通過在AndroidManifest.xml配置activity的加載方式(launchMode)以實(shí)現(xiàn)單任務(wù)模式,如下所示:
1 | "@string/app_name" android:launchmode= "singleTask" android:name= "Activity1" >
|
launchMode為singleTask的時(shí)候,通過Intent啟到一個Activity,如果系統(tǒng)已經(jīng)存在一個實(shí)例,系統(tǒng)就會將請求發(fā)送到這個實(shí)例上,但這個時(shí)候,系統(tǒng)就不會再調(diào)用通常情況下我們處理請求數(shù)據(jù)的onCreate方法,而是調(diào)用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)可能會隨時(shí)殺掉后臺運(yùn)行的Activity,如果這一切發(fā)生,那么系統(tǒng)就會調(diào)用onCreate方法,而不調(diào)用onNewIntent方法,一個好的解決方法就是在onCreate和onNewIntent方法中調(diào)用同一個處理數(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 |
關(guān)于如何理解Android應(yīng)用開發(fā)中兩個運(yùn)行的Activity之間的通信問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。
分享標(biāo)題:如何理解Android應(yīng)用開發(fā)中兩個運(yùn)行的Activity之間的通信
網(wǎng)頁路徑:
http://weahome.cn/article/pehdoc.html