I have a Switch, or a SwitchCompat rather on my app.
When the user clicks or slides the switch I would like to run some code to determine if they should be allowed to.
I have tried the
setOnCheckedChangeListener and setOnClickListener methods but both allow the graphic of the slider to toggle before running the validation code.
How can I run my own code before anything else when the switch is pressed?
Thanks
We have three options
setOnCheckedChangeListener()
setEnabled()
setOnTouchListener
and write your validation code there, and if the user is not allowed to do the functionality justreturn true
elsereturn false
Returning true would make the Switch believe the touch was handled and it won't do any actions for the same