0

在充当搜索框的 EditText 中,我如何找到相似的词

任何人都可以帮忙吗?

谢谢洛基

4

3 回答 3

0

AutocompletetextView 是最好的选择:这里是链接:http ://www.androidaspect.com/2012/06/autocompletetextview-example.html

于 2012-09-11T09:57:54.267 回答
0

你有两个选择

于 2012-09-11T10:02:11.290 回答
0

遵循AutoCompleteTextView文档

AutoCompleteTextView是一个可编辑的文本视图,可在用户键入时自动显示完成建议。

另请阅读有关ArrayAdapter

BaseAdapter由任意对象数组支持的混凝土。

并从文档中尝试以下示例

public class CountriesActivity extends Activity {
     protected void onCreate(Bundle icicle) {
         super.onCreate(icicle);
         setContentView(R.layout.countries);

         ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                 android.R.layout.simple_dropdown_item_1line, COUNTRIES);
         AutoCompleteTextView textView = (AutoCompleteTextView)
                 findViewById(R.id.countries_list);
         textView.setAdapter(adapter);
     }

     private static final String[] COUNTRIES = new String[] {
         "Belgium", "France", "Italy", "Germany", "Spain"
     };
 }
于 2012-09-11T10:17:41.530 回答