我已经为我实现了一个自定义适配器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(模拟器)上看起来不错。
有人知道怎么修这个东西吗?