我无法强制 AutoCompleteTextView 下拉元素将文本换成三行或更多行。
如你看到的:
第一个图像(下拉元素)中的文本消失了,但我不会将它换成更多行。
编辑:这是我的下拉项目的 xml 代码
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?android:attr/dropDownItemStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:lines="4"
android:minLines="4"
android:textSize="10sp"/>
我怎样才能做到这一点?