AutoCompleteTextViewドロップダウン要素にテキストを3行以上で折り返すように強制することはできません。
ご覧のように:
最初の画像(ドロップダウン要素)のテキストは消えますが、それ以上の行に折り返すことはしません。
編集済み:これはドロップダウンアイテムの私の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"/>
これどうやってするの?