I wanted to animate view as shown in the image. How to do it?
Click here to see the image
I have the following code but how to set the parameter current?
How Animation works?
When the user moves his finger over the list of icons, the height of the current icon, where the user has touched, is set to 400.
TransitionManager.beginDelayedTransition(layout);
View child = layout.getChildAt(current);
child.setMinimumHeight(400);
where current is of type int.