如何将ImageView图像保存在SharedPreference中并显示在其他activity(Gridview)中?

How to save ImageView image in SharedPreference and display in other activity (Gridview)?

如何在共享首选项中保存图像视图图像并在其他中显示activity (Gridview)

您可以将图像保存为 SharedPreferences,方法是将图像转换为 Base64 格式。

如果你转换它,你会有一个字符串格式的图像,可以正常保存到 SharedPreferences,当你想检索图像时,你可以从Base64Bitmap.

你可以查看一下this answer,相信会对你有所帮助。