I've got only the first animation:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:interpolator="@android:anim/accelerate_interpolator">
<scale
android:fromXScale="1"
android:fromYScale="1.0"
android:pivotX="100%"
android:pivotY="0%"
android:toXScale="1.0"
android:toYScale="0.0">
</scale>
and it makes my list view item being removed and scaled.
However, what I didn't figure out yet is how to build the second animation what push the rest of the items up.
This is what I built:What I reached to do
Thanks ahead!
