欢迎使用CSDN-markdown编辑器

来源:互联网 发布:c语言怎么定义字符串 编辑:程序博客网 时间:2024/06/15 23:41

神奇的android自带“分享”,4行代码搞定分享

之前在写分享的时候,无意中找到了一个android 分享的demo,用几行代码就可以打开社交软件然后分享,虽然分享的内容只有文字。mark一下:

        Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);        sharingIntent.setType("text/plain");        sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, editText.getText().toString());        startActivity(Intent.createChooser(sharingIntent, "Send a message via:"));
0 0