android 智能提示
Posted 骑着龙的羊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 智能提示相关的知识,希望对你有一定的参考价值。
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView"
android:completionThreshold="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入"
/>
private String[] resourcesStrings = {"beijing1","beijing2","beijing3"};
//单个
autoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.autoCompleteTextView);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, resourcesStrings);
autoCompleteTextView.setAdapter(adapter);
//多个
multiAutoCompleteTextView = (MultiAutoCompleteTextView)findViewById(R.id.t2);
multiAutoCompleteTextView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
multiAutoCompleteTextView.setAdapter(adapter);
以上是关于android 智能提示的主要内容,如果未能解决你的问题,请参考以下文章
用VS2015开发Android app时,为啥敲代码没有智能提示