Please explain how does the drawing cache work in Android. I\'m implementing a custom View subclass. I want my drawing to be cached by the system. In the View constructor, I
There's a hard limit on drawing cache size, available via the ViewConfiguration class.. My view is larger than allowed for caching.
FYI, the sources of the View class are available via the SDK Manager for some (not all) Android versions.