I\'ve got a custom View in my application which fills the entire activity.
In most cases, when I want to refresh the control I call invalidate() without
When HA is enabled, the rendering pipeline will use DisplayList to store the drawing commands. Even if you specify the dirty region in View.invalidate, the whole displaylist will be rebuilt (just think that how can we only update a small set of DisplayList, that's impossible right?). Eventually, as @Romain
says, only the real dirty region will be redrawn.