Andorid 系统自定义的 文字和图片 分享功能

来源:互联网 发布:川大锦江学院淘宝地址 编辑:程序博客网 时间:2024/04/30 06:36
 /** * 系统分享,支持文字和图片 *  * @param title * @param text * @param subject * @param file */private void shareTextAndImage(String title, String text, String subject, File file) {Intent intent = new Intent(Intent.ACTION_SEND);if (file != null && file.exists() && file.isFile()) {intent.setType("image/*");Uri uri = Uri.fromFile(file);intent.putExtra(Intent.EXTRA_STREAM, uri);} else {intent.setType("text/plain");}intent.putExtra(Intent.EXTRA_SUBJECT, subject);intent.putExtra(Intent.EXTRA_TEXT, text);intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(Intent.createChooser(intent, title));}


0 0