我正在使用'Glide'將圖像從服務器加載到ImageView。我想知道是否有可能從圖像視圖本身提取該URI。如何使用Glide獲取imageview上的URI
ImageView contentImage = (ImageView) findViewById(R.id.contentImage);
........
Glide.with(getApplicationContext()).load(contentImageUrl)
.crossFade()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(contentImage);
我的目標是共享的ImageView圖像。 如何使用Glide在imageview上獲取URI?
Uri uri = ??????????????
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(shareIntent, "Share Image"));
你可以從filepath獲取圖像uri。這不夠嗎? – tahsinRupam