Is there a way to reset the edittext value without setting text like:
((EditText) findViewById(R.id.yoursXmlId)).setText(\"\");
EDI
if anyone is finding the selected answer not working please try with
editText.post(() -> editText.getText().clear());
or
editText.post(new Runnable() { @Override public void run() { editText.getText().clear(); } });