Android基礎教程(八)之仿百度谷歌搜索自動提示框-----AutoCompleteTextView的應用

如今咱們上網幾乎都會用百度或者谷歌搜索信息,當咱們在輸入框裏輸入一兩個字後,就會自動提示咱們想要的信息,這種效果在Android 裏是如何實現的呢? 事實上,Android 的AutoCompleteTextView Widget ,只要搭配ArrayAdapter 就能設計同相似Google 搜索提示的效果.

本例子先在Layout 當中佈局一個AutoCompleteTextView Widget ,而後經過預先設置好的字符串數組,將此字符串數組放入ArrayAdapter ,最後利用AutoCompleteTextView.setAdapter 方法,就能夠讓AutoCompleteTextView 具備自動提示的功能.例如,只要輸入ab ,就會自動帶出包含ab 的全部字符串列表.

讓咱們看一下效果圖:

下面是咱們程序所涉及變更的代碼(本例子代碼寫的相對較少):

首先是main.xml:
java

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:orientation="vertical"
  4.     android:layout_width="fill_parent"
  5.     android:layout_height="fill_parent"
  6.     >
  7. <TextView 
  8.     android:layout_width="fill_parent"
  9.     android:layout_height="wrap_content"
  10.     android:text="Please input:"
  11.     />
  12. <AutoCompleteTextView
  13.     android:id="@+id/actv"
  14.     android:layout_width="fill_parent"
  15.     android:layout_height="wrap_content"
  16. />
  17. </LinearLayout>
複製代碼
其次是主控制程序AutoCompleteTextViewDemo.java:

package com.android.test;
  1. import android.app.Activity;
  2. import android.os.Bundle;
  3. import android.widget.ArrayAdapter;
  4. import android.widget.AutoCompleteTextView;

  5. public class AutoCompleteTextViewDemo extends Activity {

  6.     private AutoCompleteTextView actv;
  7.     private static final String[] autoStrs = new String[]{"a","abc","abcd","abcde","ba"};
  8.     public void onCreate(Bundle savedInstanceState) {
  9.         super.onCreate(savedInstanceState);
  10.         setContentView(R.layout.main);
  11.       
  12.         //經過findViewById()方法取到actv
  13.         actv = (AutoCompleteTextView)findViewById(R.id.actv);
  14.         //new ArrayAdapter對象並將autoStr字符串數組傳入actv中
  15.         ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
  16.                 android.R.layout.simple_dropdown_item_1line,autoStrs);  
  17.         actv.setAdapter(adapter);  
  18.     }
  19. }
複製代碼
全部程序就這麼一點點哦,大功就這麼告成了,最後執行之,將達到上述效果,今天至此結束,謝謝你們!!!
相關文章
相關標籤/搜索