I've got a simple form that I am adding a 'reset; button to, that I'd like to have reset all of the form inputs when clicked. I can do this easily with a setOnClickListener()
and then resetting the EditText
fields manually, but just wondered if there was some built-in construct to handle form resets, like in HTML.
Thanks