1

在我的应用程序中,我创建了一个包含自动完成视图的对话框。在自动完成视图中,我希望它弹出建议。当我输入名称时。但问题是它只给出了 2 条建议。

这是我在 XML 文件中的自动完成视图的代码

<com.example.netmdapp1.CustomAutoCompleteTextView
    android:id="@+id/customautocomplete"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="@android:color/black"
    android:completionThreshold="3"
    android:scrollbars="vertical" />

这是我的 CustomAutoCompleteTextView 类

public class CustomAutoCompleteTextView extends AutoCompleteTextView {
    HashMap<String, String>hm;

    public CustomAutoCompleteTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected CharSequence convertSelectionToString(Object selectedItem) {
         hm = (HashMap<String, String>)selectedItem;
         return hm.get("name");
    }

    public String getid() {
        return hm.get("id");
    }
}

下面给出了将适配器设置为我的自动完成 textView 的代码

final CustomAutoCompleteTextView autoComplete = new CustomAutoCompleteTextView(getParent(), null);
SimpleAdapter adapter = new SimpleAdapter(getParent(), patientList, R.layout.autocomplete_texts, from, to);
4

1 回答 1

1

我认为你应该看看这个: android-immediate-auto-complete

它会帮助你。

随意发表评论。

于 2013-01-31T04:37:25.443 回答