Android:如何使AutoCompleteTextView SingleLine?

前端之家收集整理的这篇文章主要介绍了Android:如何使AutoCompleteTextView SingleLine?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<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的代码.

问题是我想输入一些文本,然后在软键盘上单击下一步.下一个没有出现在软键盘上,但它没有将光标移动到下一个EditText.在同一个屏幕中,所有的EditText都有相同的代码,它们可以正常工作.在这种情况下,AutoCompleteTextView与普通的EditText有什么区别吗?

解决方法

在xml中的AutoCompleteTextView中设置android:imeOptions =“actionNext”.

猜你在找的Android相关文章