Android transfer animation of view in custom viewgroup
问题 I want animation like expanding of the photos when I click folder of photos at gallery, like in this video about Android gallery. i have two views in same custom viewgroup view1 is in 0,0 view2 is in 100,100 since click "start" view1 will move to 100,0 and view2 will move to 0,100 My solution so far: I use timer for refresh layout with new position by requestlayout. the views' position will refresh by onLayout : It works but it's not a native function and it is very slow with 100 views moving