91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android高級組件AutoCompleteTextView自動完成文本框使用詳解

發布時間:2020-10-04 15:53:20 來源:腳本之家 閱讀:933 作者:光仔December 欄目:移動開發

自動完成文本框(AutoCompleteTextView),用于實現允許用戶輸入一定字符后,顯示一個下拉菜單,供用戶從中選擇,當用戶選擇某個選項之后,按用戶選擇自動填寫該文本框。

語法格式:

<AutoCompleteTextView
屬性列表>
</AutoCompleteTextView>

AutoCompleteTextView組件繼承EditText,所以它支持EditText組件提供的屬性,同時,該組件還有以下屬性:
android:completionHint 下拉列表下面的說明性文字
android:completionThreshold 彈出下來列表的最小字符個數
android:dropDownAnchor 下拉列表的錨點或掛載點
android:dropDownHeight 下拉列表高度
android:dropDownWidth 下拉列表寬度
android:dropDownHorizontalOffset 下拉列表距離左邊的距離
android:dropDownVerticalOffset       下拉列表距離上邊的距離
android:dropDownSelector 下拉列表被選中的行的背景
android:popupBackground         下拉列表的背景

下面實現帶自動提示功能的搜索框:

效果如圖所示:

Android高級組件AutoCompleteTextView自動完成文本框使用詳解

具體實現:

res/layout/main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:orientation="horizontal" 
  android:background="#000000"> 
  <AutoCompleteTextView 
    android:layout_width="wrap_content" 
    android:text="" 
    android:id="@+id/autoCompleteTextView1" 
    android:completionThreshold="2" 
    android:completionHint="輸入搜索內容" 
    android:background="#FFFFFF" 
    android:layout_marginLeft="10px" 
    android:layout_weight="7" 
    android:layout_height="wrap_content"> 
  </AutoCompleteTextView> 
  <Button android:text="搜索" 
    android:id="@+id/button0" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:layout_marginLeft="10px"/> 
</LinearLayout> 

界面效果如圖:

Android高級組件AutoCompleteTextView自動完成文本框使用詳解

MainActivity:

package com.example.test; 
 
 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.ArrayAdapter; 
import android.widget.AutoCompleteTextView; 
import android.widget.Button; 
import android.widget.Toast; 
 
 
public class MainActivity extends Activity { 
  //此字符串是要在下拉菜單中顯示的列表項 
  private static final String[] COUNTRIES=new String[]{"HeNan","HeNan大學", 
    "HeNan理工大學","HeNan工業大學","HeNan萬方科技學院","HeNan第二附屬醫院二院"}; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
     
    //獲取自動完成文本框 
    final AutoCompleteTextView textView=(AutoCompleteTextView)findViewById(R.id.autoCompleteTextView1); 
    //注意ArrayAdapter與SimpleAdapter的區別 
    //創建一個ArrayAdapter適配器 
    ArrayAdapter<String> adapter=new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,COUNTRIES); 
    textView.setAdapter(adapter);//為自動完成文本框設置適配器 
     
    Button button=(Button)findViewById(R.id.button0);//獲取"搜索"按鈕 
    //為搜索按鈕添加事件監聽器 
    button.setOnClickListener(new OnClickListener() { 
       
      @Override 
      public void onClick(View arg0) { 
        Toast.makeText(MainActivity.this, textView.getText().toString(),Toast.LENGTH_SHORT).show(); 
         
      } 
    }); 
  } 
} 

實現了自動補全,當打HeNan的時候,下面就會有補全信息。此功能在搜索應用上使用的比較廣泛。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

格尔木市| 盐城市| 辽宁省| 保德县| 天祝| 长阳| 赤壁市| 晋江市| 玉屏| 湘潭市| 沂水县| 桐柏县| 游戏| 太白县| 怀远县| 白城市| 乌苏市| 方城县| 宜宾市| 保定市| 浦北县| 上思县| 望都县| 承德市| 铁岭市| 当涂县| 肇州县| 鸡东县| 博湖县| 仁怀市| 巴中市| 子长县| 延安市| 义马市| 朔州市| 托里县| 郴州市| 东阿县| 文化| 滕州市| 长白|