Hi!
I am working on "Color Balls" like game. There are two animations which should be supported:
1. Ball Jump when selected
2. Ball move animation from one position to another
I tried to use GridView with Adapter and each ball is ImageView but I met a problems with animations. Ball Jump is croped if top animation point overlap another view. Also I can't implement moving animation since I can't manually execute "View getView" method to redraw GridView with .
Maybe I should use another layout for this task? Please advice.

