Skip to content
Advertisement

Tag: android-switch

Android – programmatically change the state of a switch without triggering OnCheckChanged listener

I’m looking for a method of programmatically changing the state of an Android Switch widget using switch.setChecked(true); without triggering OnCheckedChangedlistener. My first thought was to swap it out for an OnClickListener but as this only registers clicks and you are able to not only click but also slide a Switch then it’s not really fit for purpose as if the

Advertisement