Hello there!! I want to load an image to an ImageView from the drawable folder and not from a url. I am able to do that like this
aq.id(R.id.myImage).image(R.drawable.blabla);
but also I want to have Cache Control. But when I do this
aq.id(R.id.myImage).image(R.drawable.blabla, memCache, fileCache); nothing shows.
How is it possible is it possible instead of a url to use the path of my image in drawable folder???
Thanks