输入内容被隐藏
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <AutoCompleteTextView android:id="@+id/autoCompleteTextView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="2" android:hint="@string/input" > </AutoCompleteTextView> <MultiAutoCompleteTextView android:id="@+id/multiAutoCompleteTextView1" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="2" android:layout_below="@+id/autoCompleteTextView1" android:hint="@string/input" > </MultiAutoCompleteTextView> </RelativeLayout>
输入第一个textview后再点击第二个的时候,第一个输入的内容就被隐藏了,为什么会这样呢?是哪里设置问题吗?