How to implement SQLite database to store Bitmap Image and Text?

后端 未结 3 747
忘了有多久
忘了有多久 2021-01-28 00:11

hello all i am developing an android application which listen to incoming whatsapp notification and show it in listView using NotificationListenerService. i need he

3条回答
  •  我在风中等你
    2021-01-28 00:41

    Storing Bitmap images in a SQL is actually a bad idea.

    My suggestion is to save you images online and save the URL link in the database.

    You can take the URL from the database and show it in your app using Picasso (link).

    Also, remember to ask for internet permission in your app to load images from a url.

提交回复
热议问题