标签:android style blog color io os ar sp div
Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_SUBJECT, "Share"); intent.putExtra(Intent.EXTRA_TEXT, "Share app 物流宝贝, 真的很好用!!"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(Intent.createChooser(intent, getTitle()));
在一个按钮的监听中调用这段代码之后,可以调用系统的分享功能
标签:android style blog color io os ar sp div
原文地址:http://www.cnblogs.com/nyle-hui/p/4048546.html