I am trying to clear a multiline EditText field inside the OnEditorActionListener.onEditorAction method.

But using any of the obvious ways i.e.

((EditText) view).getEditableText().clear();
((EditText) view).getEditableText().clearSpans(); 
((EditText) view).setText("");

only clears the visible characters - leaving the the newlines in the field (which then have to be manually deleted).

Is there way to 'completely' clear a multiline EditText field ? (or at least - does anybody know why the above don't work ?)

link|improve this question
Solved (in a minute after a good night's sleep) - the newline was being added after clearing the text because the onEditorAction method implementation was returning false (for other reasons). Returning 'true' indicates that the 'enter' has been processed/consumed and the clear() behaves as expected. – tonys Jan 26 '11 at 6:16
1  
you should add the above as an answer then accept it, preferably with a nice working code sample :-) – dave.c Jan 26 '11 at 8:57
@dave.c. Done :-) – tonys Jan 26 '11 at 10:27
feedback

5 Answers

up vote 3 down vote accepted

Solved (in a minute after a good night's sleep) - the newline was being added after clearing the text because the onEditorAction method implementation was returning false (for other reasons).

Returning true indicates that the 'enter' has been processed/consumed and the clear() behaves as expected:

edittext.setOnEditorActionListener(new OnEditorActionListener() { 
    @Override
    public boolean onEditorAction(TextView view,int actionId,KeyEvent event) {
           post(view.getText().toString());

           ((EditText) view).getEditableText().clear();

           return true;
         }
     });
link|improve this answer
feedback

I don't have an IDE here to test, but you could give it a try:

  • ((EditText) view).clearComposingText() It's a inherit method from TextView
  • Not so elegant but maybe functional: setSingleLine = true and then false again. Maybe useful until someone can provide something better...
link|improve this answer
Out of curiosity (see comment to original question) I tried this but it didn't seem to work. – tonys Jan 26 '11 at 6:31
feedback

There is a way with setMaxLines:

yourEditText.getEditableText().clear();
yourEditText.setMaxLines(1);
link|improve this answer
Just for the record (see comment to original question) I tried this but it didn't seem to work. – tonys Jan 26 '11 at 6:29
1  
@tonys: this is strange because it worked for me. I set up a simple activity with an edit text and a button. I started to type some text making the edit text multiline. Then with the button I called the two lines above and the edit text was completely cleared. – gulbrandr Jan 26 '11 at 8:24
I'm guessing your onEditorAction(...) implementation returned true, in which case getEditableText().clear() works just fine. – tonys Jan 26 '11 at 10:24
feedback

Maybe I'm feeling a bit too lucky but:

((EditText) view).setText(null);
link|improve this answer
1  
I'd be surprised if this works, as the first thing that setText(CharSequence text, BufferType type, boolean notifyBefore, int oldlen) (which is eventually called by setText(CharSequence text)) does is to check for null and replace with an empty String. See the source code. If it does work I'd love to know why. – dave.c Jan 25 '11 at 17:10
<smile> it doesn't work (I had tried it already) – tonys Jan 26 '11 at 6:14
hehe :-) Sorry for the juvenile optimism, but sometimes I notice that I'm so busy with finding the "root of the evil" that I simply fail to check the simplest things (which of course almost always is exactly what solves my problem) :-) In this case it wasn't really that easy though (just as @dave.c noted above). – dbm Jan 26 '11 at 8:53
feedback

I used this when I had a clear button on my app

            Button clearButton = (Button)findViewById(R.id.clear);

    clearButton.setOnClickListener(new Button.OnClickListener() {

        public void onClick(View v) {

            number = (EditText) findViewById(R.id.text_reading);

            number.setText("");

            }
        });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.