I'm trying to clear the contents of an edittext box when it is clicked. Currently my code is as follows:
EditText TextOut1 = (EditText) findViewById(R.id.Search);
TextOut1.setText("", TextView.BufferType.EDITABLE);
This code will change the edittext box when bound to a button, but not when bound to an edit textbox.