caching - Android glide load bitmap -


in app, have image view, image content server in format of base64 encoded string. store locally , decode bitmap. bitmap loaded image view. makes app scroll slow. found reason behind no caching done bitmap. 1 recommended solution use glide. did not find method load bitmap using glide. found following method

glide.with(context).load("http://goo.gl/gegyud").into(pollwebview); 

can load bitmap using glide?

you can pass file glide.

glide.with(context).load(new file("your/file/name.jpg")).into(pollwebview);


Popular posts from this blog