首頁(yè) 收藏 QQ群
 網(wǎng)站導(dǎo)航

ZNDS智能電視網(wǎng) 推薦當(dāng)貝市場(chǎng)

TV應(yīng)用下載 / 資源分享區(qū)

軟件下載 | 游戲 | 討論 | 電視計(jì)算器

綜合交流 / 評(píng)測(cè) / 活動(dòng)區(qū)

交流區(qū) | 測(cè)硬件 | 網(wǎng)站活動(dòng) | Z幣中心

新手入門(mén) / 進(jìn)階 / 社區(qū)互助

新手 | 你問(wèn)我答 | 免費(fèi)刷機(jī)救磚 | ROM固件

查看: 12077|回復(fù): 0
上一主題 下一主題
[教程]

Android基礎(chǔ)教程(八)AutoCompleteTextView的應(yīng)用

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
發(fā)表于 2013-8-28 16:30 | 只看該作者 回帖獎(jiǎng)勵(lì) |倒序?yàn)g覽 |閱讀模式
>
現(xiàn)在我們上網(wǎng)幾乎都會(huì)用百度或者谷歌搜索信息,當(dāng)我們?cè)谳斎肟蚶镙斎胍粌蓚€(gè)字后,就會(huì)自動(dòng)提示我們想要的信息,這種效果在 里是如何實(shí)現(xiàn)的呢? 事實(shí)上, 的 ,只要搭配 就能設(shè)計(jì)同類(lèi)似 搜索提示的效果.
本例子先在 當(dāng)中布局一個(gè) ,然后通過(guò)預(yù)先設(shè)置好的字符串?dāng)?shù)組,將此字符串?dāng)?shù)組放入 ,最后利用 方法,就可以讓 具有自動(dòng)提示的功能.例如,只要輸入 ,就會(huì)自動(dòng)帶出包含 的所有字符串列表.
讓我們看一下效果圖:
  
下面是我們程序所涉及變動(dòng)的代碼(本例子代碼寫(xiě)的相對(duì)較少):
首先是
   
  1. <?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="Please input:"   
        />   
    <AutoCompleteTextView   
        android:id="@+id/actv"   
        android:layout_width="fill_parent"   
        android:layout_height="wrap_content"   
    />   
    </LinearLayout>
復(fù)制代碼
   
   
其次是主控制程序
   
  1. package com.android.test;   
       
    import android.app.Activity;   
    import android.os.Bundle;   
    import android.widget.ArrayAdapter;   
    import android.widget.AutoCompleteTextView;   
       
    public class AutoCompleteTextViewDemo extends Activity {   
       
        private AutoCompleteTextView actv;   
        private static final String[] autoStrs = new String[]{"a","abc","abcd","abcde","ba"};   
        public void onCreate(Bundle savedInstanceState) {   
            super.onCreate(savedInstanceState);   
            setContentView(R.layout.main);   
               
            //通過(guò)findViewById()方法取到actv   
            actv = (AutoCompleteTextView)findViewById(R.id.actv);   
            //new ArrayAdapter對(duì)象并將autoStr字符串?dāng)?shù)組傳入actv中   
            ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,   
                    android.R.layout.simple_dropdown_item_1line,autoStrs);      
            actv.setAdapter(adapter);      
        }   
    }
復(fù)制代碼
   所有程序就這么一點(diǎn)點(diǎn)哦,大功就這么告成了,最后執(zhí)行之,將達(dá)到上述效果,今天至此結(jié)束,謝謝大家!!!</div

上一篇:Android基礎(chǔ)教程(七)之----單選項(xiàng)框RadioGroup的綜合應(yīng)用
下一篇:Android程序設(shè)計(jì)(10)-如何進(jìn)行Android的開(kāi)發(fā)與除錯(cuò)

本版積分規(guī)則

Archiver|新帖|標(biāo)簽|軟件|Sitemap|ZNDS智能電視網(wǎng) ( 蘇ICP備2023012627號(hào) )

網(wǎng)絡(luò)信息服務(wù)信用承諾書(shū) | 增值電信業(yè)務(wù)經(jīng)營(yíng)許可證:蘇B2-20221768 丨 蘇公網(wǎng)安備 32011402011373號(hào)

GMT+8, 2025-1-23 14:34 , Processed in 0.051795 second(s), 16 queries , Redis On.

Powered by Discuz!

監(jiān)督舉報(bào):report#znds.com (請(qǐng)將#替換為@)

© 2007-2025 ZNDS.Com

快速回復(fù) 返回頂部 返回列表