[Android] AutoCompleteTextView:自动完成输入内容的控件(自动补全)
AutoCompleteTextView是EditText的直接子类,与普通EditText的最大不同就是,在用户输入的过程中,可以列出可供选择的输入项,方便使用者。
AutoCompleteTextView与普通EditText控件使用方法类似,只是需要为其指定一个Adapter对象,绑定可供选择的输入项。
AutoCompleteTextView可实现一次自动完成的功能,而另一个控件MultiAutoCompleteTextView,可以连续多次自动完成,即在通过自动完成一个输入项,接着输入一个分隔符后,继续通过自动完成连续输入多个输入项。只是要使用MultiAutoCompleteTextView类的setTokenizer方法指定分割符。
两种自动完成输入内容的控件实例如下。
Main.java
- <span style="font-size:18px;">package mobile.android.ch05.autotext;
- import android.app.Activity;
- import android.os.Bundle;
- import android.widget.ArrayAdapter;
- import android.widget.AutoCompleteTextView;
- import android.widget.MultiAutoCompleteTextView;
- public class Main extends Activity
- {
- @Override
- public void onCreate(Bundle savedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- String[] autoString = new String[]
- { "联合国", "联合国安理会", "联合国五个常任理事国", "bb", "bcd", "bcdf", "Google",
- "Google Map", "Google Android" };
- ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
- android.R.layout.simple_dropdown_item_1line, autoString);
- // AutoCompleteTextView
- AutoCompleteTextView autoCompleteTextView =
- (AutoCompleteTextView)findViewById(R.id.autoCompleteTextView);
- autoCompleteTextView.setAdapter(adapter); // 绑定adapter
- // MultiAutoCompleteTextView
- MultiAutoCompleteTextView multiAutoCompleteTextView =
- (MultiAutoCompleteTextView) findViewById(R.id.multiAutoCompleteTextView);
- multiAutoCompleteTextView.setAdapter(adapter);
- multiAutoCompleteTextView
- .setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
- }
- }</span>
main.xml
- <span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="AutoCompleteTextView" />
- <AutoCompleteTextView
- android:id="@+id/autoCompleteTextView"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="MultiAutoCompleteTextView" />
- <MultiAutoCompleteTextView
- android:id="@+id/multiAutoCompleteTextView"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
- </LinearLayout></span>
程序运行效果如下图
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。