Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中AutoCompleteTextView與MultiAutoCompleteTextView的用法

Android中AutoCompleteTextView與MultiAutoCompleteTextView的用法

編輯:關於Android編程

本文以實例列舉了Android中AutoCompleteTextView與MultiAutoCompleteTextView的使用方法,具體使用方法如下:

首先看AutoCompleteTextView的使用:

支持基本的自動完成功能,適用在各種搜索功能中,並且可以根據自己的需求設置他的默認顯示數據。
兩個控件都可以很靈活的預置匹配的那些數據,並且可以設置輸入多少值時開始匹配等等功能。
布局文件很簡單,如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <AutoCompleteTextView
    android:id="@+id/tv"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />
</LinearLayout>

這裡需要說明一下layout_width不應該設置為wrap_content,否則下拉提示只能看到第一個提示,後面的內容看不到。
業務代碼如下:

protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 
 mTextView = (AutoCompleteTextView)findViewById(R.id.tv);
 
 ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line,autoStr);
 mTextView.setAdapter(adapter);
}

MultiAutoCompleteTextView的使用:

該控件可支持選擇多個值(在多次輸入的情況下),分別用分隔符分開,並且在每個值選中的時候再次輸入值時會自動去匹配。
可用在發短信,發郵件時選擇聯系人這種類型當中。
使用時需要執行設置分隔符方法。
MultiAutoCompleteTextView的使用和AutoCompleteTextView類似,只是需要設置分隔符:
具體的使用方法為在setAdapter()方法後添加:

mTextView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved