Is there a way to reset the edittext value without setting text like:
((EditText) findViewById(R.id.yoursXmlId)).setText(\"\");
EDI
I had a case where a Samsung device was not blanking out text with setText(""), so I used:
String BLANK = "\u0020"; // space character
setText (BLANK);
and it worked this way. It may have been a font issue.