I am trying to develop a bitmap cache for my whole application. From what i read lru cache would be the correct choice.
My question is how can i access this cache throughout my whole app?
In the first activity i will load the bmps in the cache. I want to have access to this cache in the next activities the user will access.
I am not sure how to configure this. Do i need to create a static reference or how can i send the cache between activities? I don't have much experience in this domain so help would be appreciated.