In my Android project, I have a ListView with rows containing SwitchCompat items (AppCompat for Switch widget).
My problem occ
The issue in with animation playing in the list can be present if you use Android Databinding.
To resolve it, run binding.executePendingBindings() method after you set data – it will refresh binding state for the component in current frame and will not wait for the next one to come.
As you have probably guessed already – next frame is the animation