美文网首页
Android 推特分享图片问题。把本地图片(drawabe/m

Android 推特分享图片问题。把本地图片(drawabe/m

作者: 嘤嘤嘤999 | 来源:发表于2019-09-26 17:20 被阅读0次

最近遇到需求推特分享需要带上图片,必须是本地图片,需要填写参数为Uri格式

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.mipmap.app_icon);//自己本地的图片可以是drawabe/mipmap
Uri imageUri = Uri.parse(MediaStore.Images.Media.insertImage(getContentResolver(),bitmap,"",""));
TweetComposer.Builder builder = new TweetComposer.Builder(this)
             .image(imageUri)//只能放本地图片,推特分享附带的图片
             .text("推特分享内容");
              builder.show();

@希望能帮助到大家!

相关文章

网友评论

      本文标题:Android 推特分享图片问题。把本地图片(drawabe/m

      本文链接:https://www.haomeiwen.com/subject/awcdyctx.html