編輯:初級開發
現在我們上網幾乎都會用百度或者谷歌搜索信息,當我們在輸入框裡輸入一兩個字後,就會自動提示我們想要的信息,這種效果在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. }
圖2:OPhone的水平分工體制通信運營商中國移動占據主導。軟件開發和終端開發由播思通訊和各終端廠商負責。日本的窗口為鵬開科技。(圖:播思通訊的圖片。佐佐木陽拍攝,中國
很多初入Android的開發者可能會發現經常遇到Force Close或ANR這樣的問題,一般我們通過android系統的錯誤日志打印工具Logcat可以看到出錯的內容
當我們在應用程序Launcher的桌面空白處長按觸摸時,會出現一個對話框,提示選擇要添加的桌面組件,如下圖所示選擇快捷方式後,會彈出一個對話框,顯示出了可添加快捷方式的
解決方法:代碼package com.android;import Java.util.ArrayList;import Java.util.HashMap