<AutoCompleteTextView
android:id="@+id/product"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="product"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="15dp" />
这是我的 AutoCompleteTextView 代码。
问题是我想输入一些文本,然后单击Next
软键盘。Next
没有出现在软键盘上,但没有将光标移到下一个EditText
. 在同一个屏幕上,所有的 EditText 都具有相同的代码并且它们工作正常。EditText
在这种情况下AutoCompleteTextView 与正常情况有什么不同吗?