我想設置圖像屬性的值對象類,你會在下面,但使用滑翔滑翔與setter方法URL圖像源
try {
InputStream stream = new URL("my url").openStream();
Bitmap pictureBitmap = BitmapFactory.decodeStream(stream);
"my model class".setImageBitmap(pictureBitmap);
} catch (IOException e) {
e.printStackTrace();;
}
我想這是你如何獲取從圖像利用Glide作爲位圖
Glide
.with(getContext())
.load("my url")
.asBitmap()....
那麼,你的問題到底是什麼? – ikhsan
@ikhsan使用Glide完成代碼設置圖像屬性 – Geob
檢查我的答案 – ikhsan