Android中的分享功能

来源:互联网 发布:玉溪软件开发公司 编辑:程序博客网 时间:2024/06/05 06:13

最近在做拼图,类似于美图秀秀那样的,想把拼好的图分享,这个功能很好实现,只要几行代码就ok:

    IntentshareIntent = new Intent(Intent.ACTION_SEND);
    Filefile = new File(filename);
    shareIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(file));
    shareIntent.setType("image/*");
    startActivity(Intent.createChooser(shareIntent,"分享"));

把这几行加在自己的分享按钮事件中就万事大吉。

0 0
原创粉丝点击