android共用Action

來源:互聯網
上載者:User

       在Android4.0(API leverl 14)中使用ActionProvider能夠更容易的實現一個在ActionBar中的方便使用和高效的共用Action。一旦一個ActionProvider附加到ShareActionProvider菜單中,你只需要提供一個共用的Intent就可以,剩下的其他工作由它來完成。注意一點:ActionProvider只能用在API lever 14及以後的版本中。         更新菜單聲明:                 為了使用ShareActionProvider,我們首先要定義下面的內容。定義android:actionProviderClass屬性在相應的menu 資源檔<itme>下。 <menu xmlns:android="http://schemas.android.com/apk/res/android">    <item android:id="@+id/menu_item_share"        android:showAsAction="ifRoom"        android:title="Share"        android:actionProviderClass="android.widget.ShareActionProvider" />    ...</menu> 除此之外,你需要提供你想要分享什麼給provider。        設定分享的 Intent:                為了實現ShareActionprovider的功能,我們必須實現一個分享的Intent。這個Intent除了包含ACTION_SEND和extras等其他Intent向其他應用傳輸內容所需要的內容外,還需要下面的內容。在你的Activity或Fragment中填充你的菜單資源時,需要找到 MenuItem,使用MenuItem.getActionProvider得到ShareActionProvider執行個體,通過setShareProvider來更新分享的Intent。 private ShareActionProvider mShareActionProvider;... @Overridepublic boolean onCreateOptionsMenu(Menu menu) {    // Inflate menu resource file.    getMenuInflater().inflate(R.menu.share_menu, menu);     // Locate MenuItem with ShareActionProvider    MenuItem item = menu.findItem(R.id.menu_item_share);     // Fetch and store ShareActionProvider    mShareActionProvider = (ShareActionProvider) item.getActionProvider();     // Return true to display menu    return true;} // Call to update the share intentprivate void setShareIntent(Intent shareIntent) {    if (mShareActionProvider != null) {        mShareActionProvider.setShareIntent(shareIntent);    }}      

相關文章

聯繫我們

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