我正在使用Ion库将图像加载到Imageview中。
Ion.with(this)
.load(imageURL)
.intoImageView(imageview);
我想通过Intent在壁纸中设置加载的图像 这段代码:
Uri bmpUri = getLocalBitmapUri(imageview);
Intent emailIntent = new Intent(Intent.ACTION_ATTACH_DATA);
emailIntent.setDataAndType(bmpUri, "image/*");
startActivity(emailIntent);
此代码在picasso库中有效,但在Ion库中,Uri是空的。
如何从Imageview获取图像Uri?