Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 初級開發 >> AutoCompleteTextView的應用 例子程序

AutoCompleteTextView的應用 例子程序

編輯:初級開發

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

 

    本例子先在Layout 當中布局一個AutoCompleteTextVIEw Widget ,然後通過預先設置好的字符串數組,將此字符串數組放入ArrayAdapter ,最後利用AutoCompleteTextVIEw.setAdapter 方法,就可以讓AutoCompleteTextVIEw 具有自動提示的功能.例如,只要輸入ab ,就會自動帶出包含ab 的所有字符串列表.

讓我們看一下效果圖:

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

首先是main.XML:

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:

1.      package com.android.test;

2.     

3.      import android.app.Activity;

4.      import android.os.Bundle;

5.      import android.widget.ArrayAdapter;

6.      import android.widget.AutoCompleteTextVIEw;

7.     

8.      public class AutoCompleteTextVIEwDemo extends Activity {

9.     

10.       private AutoCompleteTextVIEw actv;

11.       private static final String[] autoStrs = new String[]{"a","abc","abcd","abcde","ba"};

12.       public void onCreate(Bundle savedInstanceState) {

13.           super.onCreate(savedInstanceState);

14.           setContentVIEw(R.layout.main);

15.          

16.           //通過findVIEwById()方法取到actv

17.           actv = (AutoCompleteTextView)findVIEwById(R.id.actv);

18.           //new ArrayAdapter對象並將autoStr字符串數組傳入actv

19.           ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,

20.                   android.R.layout.simple_dropdown_item_1line,autoStrs);  

21.           actv.setAdapter(adapter);  

22.       }

23.   }

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved