hello all i am developing an android application which listen to incoming whatsapp notification and show it in listView using NotificationListenerService
. i need he
If your image is really small you can covert it in a String
by means of android.util.Base64
encoding and put this string in SQLite
database:
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);
}