EditText does not show current input (Android 4)
问题 My Android application contains an EditText view where you can type some short messages (single line). Pressing the keyboard's DONE key will append the message to a log view above (TextView) and clear the input view. Here's a snippet from my view xml: <LinearLayout ...> <TextView android:id="@+id/logView" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <EditText android:id="@+id/inputView" android:layout_height="wrap_content" android:layout_width="fill_parent"