In my application users can input text in an EditText view (editText1). I grab the inputs with an OnEditorActionListener, display them in a TextView above (logTv1) and empty editText1.

    <TextView
        android:id="@+id/logTv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#ffffff"
        android:textSize="16dp"
        android:typeface="monospace" />

    <TextView
        android:id="@+id/kontextTv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/logTv1"
        android:textColor="#ffffff"
        android:textSize="16dp"
        android:typeface="monospace" />

    <EditText
        android:id="@+id/editText1"
        android:layout_height="wrap_content"
        android:inputType="textFilter"
        android:textColor="#FFFFFF"
        android:layout_width="fill_parent"
        android:layout_below="@id/logTv1"
        android:layout_toRightOf="@id/kontextTv1"
        android:textSize="16dp"
        android:typeface="monospace"
        android:imeOptions="actionDone"
        android:singleLine="true" />

Everything works fine on Android 1.6 - 3. But on ICS there's a bug after 10-30 inputs. When I type some text, the cursor still blinks on position 0, no text is shown. Though a click on "DONE" adds the (invisible) text to the log-TextView. Hiding the keyboard makes the text in the EditText view visible, too.

Setting a mininum width for the view did not help.

link|improve this question

75% accept rate
feedback

3 Answers

up vote 2 down vote accepted
+50

I had exactly the same issue, even on lower API levels. There's a bug when using:

editText.setText("");

many times to empty an EditText. Here's a workaround that helped:

TextKeyListener.clear(editText.getText());

You can read about this bug on the Google Code site: http://code.google.com/p/android/issues/detail?id=17508

Hope it helps!

link|improve this answer
feedback

try setting an OnClickListener on your done button. Have the onClick(View v) look like this:

@Override
public void onClick(View v){
    kontextTV1.setText(editText1.getText.toString());
}

If you pull the text when the user hits the done button, you won't have to use a watcher class. This should also work on all versions of android. (Get/Set on edittext and textview aren't likely to change). That will handle a

If you want to handle the 'done' button on they keyboard, try:

editText1.setOnKeyListener(new OnKeyListener() {
    public boolean onKey(final View v, final int keyCode, final KeyEvent event) {
    if (KeyEvent.KEYCODE_ENTER == keyCode) {
        //...
    }
}
link|improve this answer
How can I add an OnClickListener on the DONE button of the virtual keyboard? I don't think that this is possible. If, though, does it also work on hardware keyboards and third-party virtual keyboard, e.g. HTC Sense? – ottel142 Feb 19 at 13:00
I must have misread your question, edited response to show how to do this. – edthethird Feb 19 at 16:31
Your solution works, but it does not fix the bug I've got using an OnEditorActionListener. After a series of inputs, the EditText does not show the input :( – ottel142 Feb 23 at 23:24
feedback

Why not use afterTextChanged instead of editorActionListener?

link|improve this answer
The user submits his input with the DONE key, this is very important! Also an empty input has to be submittable. So I can't use a TextChangedListener, right? – ottel142 Feb 17 at 22:24
feedback

Your Answer

 
or
required, but never shown

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