sketchware分享消息源代码

sketchware分享消息源代码

Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType(“text/plain”);
shareIntent.putExtra(Intent.EXTRA_TEXT, “内容”);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, “*title*”);
startActivity(Intent.createChooser(shareIntent, “标题”));
文章地址:漫夜 » sketchware分享消息源代码
分享到:
赞(3)