Animate strings in a ListView

I saw an Android application called "Mobisle Notes Free" that implements a really cool ListView where the line moves down if the checkbox is checked. This is not just a simple update, but the actual animation, where you see the line moving to the bottom. Does anyone know how to implement this?

+3
source share
1 answer

You can check the Android application "ApiDemos". It provides you with some source code that can show you how to make widget based animations.

Edit:

I believe that these are classes Animation1, Animation2 and Animation3.

0
source

Source: https://habr.com/ru/post/1767086/


All Articles