I have an Android game with a GridLayout
that contains a custom ImageView
in each of its cells. At certain points in this game I want to redraw several of these ImageView
s at the same time (not sequentially).
If I call invalidate() on the parent ViewGroup, the GridLayout
, will all the child views be redrawn at the same time? Is there a different or better way to redraw several child views at the same time?