数码资讯
android 系统自带分享文字+图片到微信朋友圈
选购提示
关注价格、性能、续航、售后和真实使用场景,理性比较后再下单。
/**分享图片**/ public void shareImage(String title, String txt,String imagePath) { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_TEXT, txt);//正常使用的文字 intent.putExtra(Intent.EXTRA_SUBJECT, title); intent.putExtra("sms_body", txt);//短信时使用 intent.putExtra("Kdescription", txt);//微信朋友圈专用 Uri image = Uri.fromFile(new File(imagePath)); intent.putExtra(Intent.EXTRA_STREAM, image); // startActivity(Intent.createChooser(intent, title)); startActivity(intent);}
声明:本文内容用于数码产品信息整理与选购参考,具体价格、库存、售后政策以官方渠道和电商页面实时信息为准。