Is there a way to reset the edittext value without setting text like:
((EditText) findViewById(R.id.yoursXmlId)).setText(\"\");
EDI
A function for that would be:
fun setTextViewEmpty(textView: TextView){ (textView as EditText ).text.clear() }
inspired by this