Android使用系統Intent實現分享功能及將應用加入分享列表

來源:互聯網
上載者:User
轉載自:http://orgcent.com/android-app-intent-share-list/ | 蘿蔔白菜的部落格

在Android系統中如何給應用增加分享功能,怎樣將應用加入系統的分享挑選清單?

Intent.createChooser()方法用來彈出系統分享列表。

查看Intent對應的組件是否存在,可查看Android判斷Intent是否存在,是否可用

1、應用增加分享功能

1
2
3
4
5
6
7
public static void shareText(Context context, String title, String text) {
    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("text/plain");
    intent.putExtra(Intent.EXTRA_SUBJECT, title);
    intent.putExtra(Intent.EXTRA_TEXT, text);
    context.startActivity(Intent.createChooser(intent, title));
}

PS:上面的代碼為分享文本,若想分享圖片資訊需要設定setType為“image/*”,傳遞一個類型為Uri的參數Intent.EXTRA_STREAM。

2、應用加入系統分享列表
只需在AndroidManifest.xml中加入以下代碼:

1
2
3
4
5
6
7
<activity android:name=".SharePage" android:label="分享到微博">
    <intent-filter>
        <action android:name="android.intent.action.SEND" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="image/*" />
    </intent-filter>
</activity>

 

相關文章

聯繫我們

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