码迷,mamicode.com
首页 > 移动开发 > 详细

android 分享功能

时间:2014-10-24 18:18:37      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   os   ar   sp   div   

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_SUBJECT, "Share");
intent.putExtra(Intent.EXTRA_TEXT, "Share app 物流宝贝, 真的很好用!!");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(Intent.createChooser(intent, getTitle()));

 

在一个按钮的监听中调用这段代码之后,可以调用系统的分享功能

android 分享功能

标签:android   style   blog   color   io   os   ar   sp   div   

原文地址:http://www.cnblogs.com/nyle-hui/p/4048546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!