我使用Retrofit2从json获取html内容。 json:
"content": " hello word! <img src="test.jpg">"
我想要显示内容时,内容中的图像显示如下: enter image description here
图像中心上有一个按钮,单击该按钮后,图像下载并显示如下: enter image description here
用于此目的的代码是什么?
答案 0 :(得分:0)
这是一段将代码保存在设备内部存储中的代码:
public boolean saveImageToInternalStorage(Bitmap image) {
try {
// Use the compress method on the Bitmap object to write image to
// the OutputStream
FileOutputStream fos = context.openFileOutput("desiredFilename.png", Context.MODE_PRIVATE);
// Writing the bitmap to the output stream
image.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.close();
return true;
} catch (Exception e) {
Log.e("saveToInternalStorage()", e.getMessage());
return false;
}
}
我想在按钮的onClick上调用此方法。