android:launchMode="singleTask" 與 onNewInt

來源:互聯網
上載者:User

最近項目開發中用到了android:launchMode="singleTask" 和 onNewIntent(Intent intent)兩個特性,現總結一下經驗:

android:launchMode="singleTask" 配置在 Mainifest 中,它保證了棧中此Activity總是只有一個,無論你啟動它多少次;

onNewIntent(Intent intent) 是Override Activity的父類方法,只有僅在點Home鍵退出Activity而再次啟動新的Intent進來才被調用到;

它們兩結合使用,可以做到監聽home鍵(僅當發起新的Intent)。

代碼如下:

Manifest.xml

Java代碼  
  1. <activity android:name=".OnNewIntentDemo"  
  2.             android:launchMode="singleTask"  
  3.                   android:label="@string/app_name">  
  4.             <intent-filter>  
  5.                 <action android:name="android.intent.action.MAIN" />  
  6.                 <category android:name="android.intent.category.LAUNCHER" />  
  7.             </intent-filter>  
  8.             <intent-filter>  
  9.                 <action android:name="android.intent.action.VIEW" />  
  10.                 <category android:name="android.intent.category.DEFAULT" />  
  11.                 <data android:mimeType="video/*" />  
  12.             </intent-filter>  
  13. </activity>  



Activity 中

Java代碼  
  1. @Override  
  2.     protected void onNewIntent(Intent intent) {  
  3.      if(DEBUG) Log.i(TAG, "onNewIntent ~~~~~~~ intent = "+intent);  
  4.      super.onNewIntent(intent);  
  5.     }  



注意: 當按Home鍵退出,再長按Home鍵進入,此時onNewIntent不被訪問,因為再次進入的時候沒有被發起Intent。
來自:http://blog.csdn.net/adreamer_bj/archive/2010/12/22/6091414.aspx

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.