Android 推特分享图片问题。把本地图片(drawabe/m
2019-09-26 本文已影响0人
嘤嘤嘤999
最近遇到需求推特分享需要带上图片,必须是本地图片,需要填写参数为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();
@希望能帮助到大家!