美文网首页
Intent 之 分享文本

Intent 之 分享文本

作者: wolf_hugo | 来源:发表于2020-03-22 12:24 被阅读0次

    0x00

    Intent 作为Android开发三大件之一,其重要程度不言自明。

    0x01

    文件文本等数据的共享,都是通过Intent传递的。和启动活动不同,发送/分享需要实例化两个Intent对象。

    0x02 show you the code

    
    Intent sendIntent = new Intent();
    
    sendIntent.setAction(Intent.ACTION_SEND);
    
    sendIntent.putExtra(Intent.EXTRA_TEXT, "this is my text to share");
    
    sendIntent.setType("text/plain");
    
    Intent shareIntent = Intent.createChooser(sendIntent, null);
    
    startActivity(shareIntent);
    
    

    0x03

    这段代码很简单,大概也不需要细说吧。

    相关文章

      网友评论

          本文标题:Intent 之 分享文本

          本文链接:https://www.haomeiwen.com/subject/smimyhtx.html