Android 实现系统分享

 

使用手机上的程序,来分享/发送,比如QQ的“发送到我的电脑”。

 

1、分享/发送文本内容

1  Intent shareIntent = new Intent();
2         shareIntent.setAction(Intent.ACTION_SEND);
3         shareIntent.setType("text/plain");
4         //要分享的文本内容,选择某项后会直接把这段文本发送出去,相当于调用选中的应用的接口,并传参
5         shareIntent.putExtra(Intent.EXTRA_TEXT, "Here is the Shared text.");
6         //需要使用Intent.createChooser,这里我们直接复用。第二个参数并不会显示出来
7         shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
8         startActivity(shareIntent);

 

 

通用步骤:

首先将Intent的cation设置为Intent.ACTION_SEND,

其次根据分享的内容设置不同的Type,

然后根据不同的社交平台设置相关Extras,

最后创建并启动选择器

 

 

2、分享/发送单张图片

1  //指定要分享的图片路径
2         Uri imgUri = Uri.parse("mnt/sdcard/1.jpg");
3         Intent shareIntent = new Intent();
4         shareIntent.setAction(Intent.ACTION_SEND);
5         shareIntent.putExtra(Intent.EXTRA_STREAM, imgUri);
6         shareIntent.setType("image/*");
7         shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
8         startActivity(shareIntent);

注意根目录为     mnt/sdcard/   

 

 

3、分享/发送多张图片

 1  Uri imgUri1 = Uri.parse("mnt/sdcard/1.jpg");
 2         Uri imgUri2 = Uri.parse("mnt/sdcard/2.jpg");
 3         ArrayList<Uri> imgUris = new ArrayList<Uri>();   //使用集合保存
 4         imgUris.add(imgUri1); 
 5         imgUris.add(imgUri2); 
 6 
 7         Intent shareIntent = new Intent();
 8         shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);    //注意是Intent_ACTION_MULTIPLE
 9         shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imgUris);   //注意是方法是putParcelableArrayListExtra()
10         shareIntent.setType("image/*");
11         shareIntent = Intent.createChooser(shareIntent, "Here is the title of Select box");
12         startActivity(shareIntent);

 

转载于:https://www.cnblogs.com/chy18883701161/p/10887093.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值