android分享到代码

其实是调用系统的一个分享功能,可以将文本信息传送到其它程序里。

Intent intent=new Intent(Intent.ACTION_SEND);   
intent.setType("text/plain");  //分享的数据类型 
intent.putExtra(Intent.EXTRA_SUBJECT, "subject");  //主题 
intent.putExtra(Intent.EXTRA_TEXT,  "content");  //内容 
startActivity(Intent.createChooser(intent, "title"));  //目标应用选择对话框的标题

posted on 2012-04-11 16:25  fuxy  阅读(187)  评论(0)    收藏  举报

导航