我已为AutoCompleteTextView
实施了自定义适配器以及建议的自定义列表项视图。除了建议对话框剪辑建议外,一切正常。这很可能是因为textview是多行的,但我无法弄清楚如何告诉建议弹出窗口扩展以填充整个视图。这是我的视图代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="none"
android:textColor="@android:color/black"
android:textSize="15dp"
android:padding="10dp" />
</RelativeLayout>
这是一张图片:
我还注意到,如果Android版本更高,它不会剪辑,我在2.3.5测试它剪辑(我的手机),但在4.1(模拟器)它看起来很好。
任何人都知道如何解决这个问题?