Is there a way to reset the edittext value without setting text like:
((EditText) findViewById(R.id.yoursXmlId)).setText(\"\");
EDI
Another option is: EditText.getText().clear(); But you'll have to cast anyway:
((EditText) findViewById(R.id.yoursXmlId)).getText().clear();