Nếu hình ảnh của bạn thực sự nhỏ bạn có thể giấu nó trong một String
bằng android.util.Base64
mã hóa và đặt chuỗi này trong SQLite
cơ sở dữ liệu:
public static String getPngAsString(Bitmap bitmap){
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 0, bos);
byte[] bitmapBytes = bos.toByteArray();
return Base64.encodeToString(bitmapBytes, Base64.NO_WRAP);
}