Android调用系统分享

Android调用系统分享

示例:

Android调用系统分享_第1张图片

代码比较简单,就直接上代码

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "要分享的内容");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "选择要分享的方式"));

完毕

你可能感兴趣的:(android,系统分享)