蹉跎莫遣韶光老,人生唯有读书好。这篇文章主要讲述Android分享---调用系统自带的分享功能相关的知识,希望能为你提供帮助。
以前我们总想到友盟等平台分享功能的集成,集成这玩意还得下载对应的jar包。当然,用这些平台的分享并不是说什么好处都没有,至少人家的统计功能还是很实用的。不过有的时候我们是不需要多余功能的,只需要能分享就行,那我们就可以直接用Andriod系统自带有分享功能去完成了。下面我来介绍如何实现系统的分享功能:
分享文本信息
1 Intent intent = new Intent(Intent.ACTION_SEND); 2 intent.setType("text/plain"); 3 intent.putExtra(Intent.EXTRA_TEXT, text); 4 context.startActivity(Intent.createChooser(intent, title));
文章图片
文章图片
分享单张图片
1 Intent intent = new Intent(Intent.ACTION_SEND); 2 intent.setType("image/png"); 3 intent.putExtra(Intent.EXTRA_STREAM, uri); 4 context.startActivity(Intent.createChooser(intent,title));
这里解释一下,图片文件要先通过
getResourcesUri()拿到图片资源的Path,然后再转换成URI对象放入intent.putExtra()的第二个参数中。
分享多个图片文件
1 Intent mulIntent = new Intent(Intent.ACTION_SEND_MULTIPLE); 2 mulIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris); 3 mulIntent.setType("image/jpeg"); 4 context.startActivity(Intent.createChooser(mulIntent, "多图文件分享"));
我们可以创建一个选择器,用户多选完之后,放到Uri集合,然后就直接可以通过以上代码进行分享了,分享效果和上图相同。
以上分享,已整理成工具类,代码如下:
1 package huolongluo.sharedemo; 2 3 import android.content.Context; 4 import android.content.Intent; 5 import android.net.Uri; 6 7 import java.util.ArrayList; 8 9 /** 10* Created by 火龙裸 on 2017/11/2. 11*/ 12 public class ShareUtil 13 { 14 15private static final String EMAIL_ADDRESS = "791335000@qq.com.com"; 16 17public static void shareText(Context context, String text, String title) 18{ 19Intent intent = new Intent(Intent.ACTION_SEND); 20intent.setType("text/plain"); 21intent.putExtra(Intent.EXTRA_TEXT, text); 22context.startActivity(Intent.createChooser(intent, title)); 23} 24 25public static void shareImage(Context context, Uri uri, String title) 26{ 27Intent intent = new Intent(Intent.ACTION_SEND); 28intent.setType("image/png"); 29intent.putExtra(Intent.EXTRA_STREAM, uri); 30context.startActivity(Intent.createChooser(intent, title)); 31} 32 33public static void sendEmail(Context context, String title) 34{ 35Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:" + EMAIL_ADDRESS)); 36context.startActivity(Intent.createChooser(intent, title)); 37} 38 39public static void sendMoreImage(Context context, ArrayList< Uri> imageUris, String title) 40{ 41Intent mulIntent = new Intent(Intent.ACTION_SEND_MULTIPLE); 42mulIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris); 43mulIntent.setType("image/jpeg"); 44context.startActivity(Intent.createChooser(mulIntent, "多图文件分享")); 45} 46 }
【Android分享---调用系统自带的分享功能】
推荐阅读
- Android_简易的短信发送器
- Android6.0源码分析之录音功能
- Android内存泄漏的场景
- mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found
- 问题解决-Failed to resolve: com.android.support.constraint:constraint-layout:1.0.0-alpha7
- android中获取某段程序的执行时间
- IT观察网络通信图片显示数据库操作……Android程序员如何利用开源框架
- HttpContext.Current.Server.MapPath("/") 未将对象设置到对象的实例异常。
- MyBatis配置Mapping,JavaType和JDBCType的对应关系