In Android java, how can I make a TimePicker unchangeable? Just like Editable or Enabled with an EditText.
I’m making an application, where it’s showing a pre-set time, and then I don’t want the user to be able to change it, until they tick a checkbox.
Thank you!
In Android java, how can I make a TimePicker unchangeable? Just like Editable or
Share
If setEnabled(false) does not work,
try to extend DatePicker widget, override onTouch and remove focus from DatePicker(or DatePicker childs)