我的单词列表作为搜索视图的建议

时间:2013-10-09 12:50:17

标签: android searchview

我有一个单词列表和一个SearchView

当用户输入单词时,我想建议一个以用户输入的字符开头的单词列表。可以使用Edittext,但如何在SearchView中获取它?

2 个答案:

答案 0 :(得分:2)

您可以使用 AutoCompleteTextView

来实现此目的

在您的布局中,使用此

<AutoCompleteTextView
android:id="@+id/autocompletetextview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="" >
</AutoCompleteTextView>

并在您的活动中使用以下代码

AutoCompleteTextView autocompletetextview;

    String[] array = { "One", "Two", "Three", "Four", "Five", "Six", "Seven",
            "Eight", "Nine", "Ten" };

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        autocompletetextview = (AutoCompleteTextView)     findViewById(R.id.autocompletetextview);

        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                android.R.layout.select_dialog_item, array);

        autocompletetextview.setThreshold(1);

        autocompletetextview.setAdapter(adapter);

答案 1 :(得分:0)

请改用AutoCompleteTextView。这是docs.

的链接