码迷,mamicode.com
首页 > 其他好文 > 详细

一键分享到本地已有的软件上

时间:2014-11-27 18:56:06      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:一键分享到本地已有的软件上

一、分享String

ShareCompat.IntentBuilder.from(this).setType("text/plain")
  .setText("内容").startChooser();

 

二、分享文件

    public void onShareFileClick(View v) {  

        try {   

            FileWriter fw = new FileWriter(getFilesDir() + "/foo.txt");  

            fw.write("This is a file share");  

            fw.close();  

  

            ShareCompat.IntentBuilder.from(this)  

                    .setType("text/plain")  

                    .setStream(Uri.parse(SharingSupportProvider.CONTENT_URI + "/foo.txt"))  

                    .startChooser();  

        } catch (FileNotFoundException e) {  

            e.printStackTrace();  

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    } 

 

具体请参考:http://www.cnblogs.com/outOfview/p/3643446.html

                   http://android.toolib.net/reference/android/support/v4/app/ShareCompat.IntentBuilder.html

一键分享到本地已有的软件上

标签:一键分享到本地已有的软件上

原文地址:http://9437752.blog.51cto.com/9427752/1583133

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