In my Android project, I have a ListView with rows containing SwitchCompat items (AppCompat for Switch widget).
ListView
SwitchCompat
Switch
My problem occ
For Kotlin developer:
fun SwitchCompat.setCheckedWithoutAnimation(checked: Boolean) { val beforeVisibility = visibility visibility = View.INVISIBLE isChecked = checked visibility = beforeVisibility }
And the usage:
mySwitch.setCheckedWithoutAnimation(true)