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.