为了应用的推广、传播,不少的应用中都有“分享”功能,一个按钮,点击后会出现短信、微博等等一切实现了分享功能的应用列表。这一篇文章主要介绍怎么调用分享功能和怎么实现分享接口让本身应用出现分享列表中。Android应用中能很方便的完成这些功能,这也正是Android的伟大之处,他能很简单的完成应用之间的沟通以相互整合。html
调用分享功能
一、分享文本
分享功能使用的隐式启动Activity的方法,这里的Action使用的是 ACTION_SEND。
java
- Intent sendIntent = new Intent();
- sendIntent.setAction(Intent.ACTION_SEND);
- sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
- sendIntent.setType("text/plain");
- startActivity(sendIntent);
效果以下图的图一。react
二、改变分享列表标题
使用上面的分享方式分享列表标题为“使用一下内容完成操做”,Android中提供了Intent.createChooser()
,这样能一直显示分享选择列表,而且修改了分享列表标题内容。android
- Intent sendIntent = new Intent();
- sendIntent.setAction(Intent.ACTION_SEND);
- sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
- sendIntent.setType("text/plain");
- startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
使用Intent.createChooser()的好处:api
If you callIntent.createChooser()
for the intent, Android will always display the chooser. This has some advantages:app
- Even if the user has previously selected a default action for this intent, the chooser will still be displayed.
- If no applications match, Android displays a system message.
- You can specify a title for the chooser dialog.

分享功能不仅是Intent.EXTRA_TEXT,还能够 EXTRA_EMAIL
, EXTRA_CC
, EXTRA_BCC
,EXTRA_SUBJECT
. 只须要接受方完成响应数据接受。ide
三、分享图片
分享功能还支持二进制内容(Binary Content),可是多数是处理的图片,由于shareIntent.setType("image/jpeg")这一项设置了内容类型。可也以是其余类型,须要接受方支持。ui
- Intent shareIntent = new Intent();
- shareIntent.setAction(Intent.ACTION_SEND);
- shareIntent.putExtra(Intent.EXTRA_STREAM, uriToImage);
- shareIntent.setType("image/jpeg");
- startActivity(Intent.createChooser(shareIntent, getResources().getText(R.string.send_to)));
四、分享图片列表
分享功能不只支持单张图片,还支持图片列表,这里仍是说的范围太窄了,应该声明不单单是图片。this
- ArrayList<Uri> imageUris = new ArrayList<Uri>();
- imageUris.add(imageUri1);
- imageUris.add(imageUri2);
-
- Intent shareIntent = new Intent();
- shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
- shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
- shareIntent.setType("image/*");
- startActivity(Intent.createChooser(shareIntent, "Share images to.."));
实现分享功能
上面说的都是怎么调用分享功能,如下就开始写怎么实现分享功能,让咱们的应用也出如今分享列表中。前面也说了分享功能是使用隐式调用Activtiy实现的,Activity须要声明 <intent-filter>
。spa
声明intent-filter
- <activity
- android:name="com.example.sharedemo.ShareActivity"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.intent.action.SEND" />
-
- <category android:name="android.intent.category.DEFAULT" />
-
- <data android:mimeType="image/*" />
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.SEND" />
-
- <category android:name="android.intent.category.DEFAULT" />
-
- <data android:mimeType="text/plain" />
- </intent-filter>
- <intent-filter>
- <action android:name="android.intent.action.SEND_MULTIPLE" />
-
- <category android:name="android.intent.category.DEFAULT" />
-
- <data android:mimeType="image/*" />
- </intent-filter>
- </activity>
上面声明了三种intent-filter,固然能够更多,这里只是举个例子,
处理接收数据
声明了intent-filter,响应的Activity就要处理响应的数据,示例以下:
- public class ShareActivity extends Activity{
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
-
- super.onCreate(savedInstanceState);
-
-
- Intent intent = getIntent();
- String action = intent.getAction();
- String type = intent.getType();
-
- if (Intent.ACTION_SEND.equals(action) && type != null) {
- if ("text/plain".equals(type)) {
- handleSendText(intent);
- } else if (type.startsWith("image/")) {
- handleSendImage(intent);
- }
- } else if (Intent.ACTION_SEND_MULTIPLE.equals(action) && type != null) {
- if (type.startsWith("image/")) {
- handleSendMultipleImages(intent);
- }
- } else {
-
- }
- }
-
- void handleSendText(Intent intent) {
- String sharedText = intent.getStringExtra(Intent.EXTRA_TEXT);
- String sharedTitle = intent.getStringExtra(Intent.EXTRA_TITLE);
- if (sharedText != null) {
-
- }
- }
-
- void handleSendImage(Intent intent) {
- Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
- if (imageUri != null) {
-
- }
- }
-
- void handleSendMultipleImages(Intent intent) {
- ArrayList<Uri> imageUris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
- if (imageUris != null) {
-
- }
- }
- }
经过声明intent-filter,处理接受到的数据就能完成分享的接收功能。
更多
上面只作了分享功能简单的说明,伴随着Android api的升级,也出现了一些新的完成“分享”功能的方法,好比 ShareActionProvider
,更多请参考。
示例下载
* iOS入门群:83702688
* android开发进阶群:241395671
*/
参考:
http://developer.android.com/training/sharing/index.html