Android webview save images to device

1.4k Views Asked by At

I have a webapp with some quite heavy images and they took a while to load

Is possible to save images from a website to an android device and then load them in a webview?

Thanks

1

There are 1 best solutions below

0
On

Is it possible to save images from a website to an android device?

Yes, using file I/O or a sqllitedb-databae

then load them in a webview?

This can be achieved with following method:

  • public void loadData (String data, String mimeType, String encoding)

An example how to display an image using loadData:

Hope this helps, if not comment below