Reputation: 4344
I have a implementation of ListView, Problem in hand is animating childs, upon removal of certain elements from listview. To elaborate further, User can select any number of view from list, and can perform multiple delete, upon delete two things has to be done.
Animation is again broken down in two sequences.
Any help/pointer will be appriciated.
Regards, techfist
Upvotes: 0
Views: 122
Reputation: 11131
use android:animateLayoutChanges attribute for ListView. see below example
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:animateLayoutChanges="true" >
</ListView>
Upvotes: 0