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

溫馨提示×

溫馨提示×

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

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

Android怎么實現自動文本框提示功能

發布時間:2021-04-16 12:28:30 來源:億速云 閱讀:267 作者:小新 欄目:移動開發

這篇文章主要介紹Android怎么實現自動文本框提示功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

Android怎么實現自動文本框提示功能

activity_main.xml布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >
  <!--
   默認輸2個字符才能有提示
   completionThreshold表示只輸入1個字符后,就有提示
   requestFocus表示界面展開時焦點直接在第二個文本框
  -->
  <AutoCompleteTextView
    android:id="@+id/myTextView01"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:completionThreshold="1" />
  <MultiAutoCompleteTextView
    android:id="@+id/myTextView02"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:completionThreshold="1">
    <requestFocus />

  </MultiAutoCompleteTextView>

</LinearLayout>

代碼實現

public class MainActivity extends Activity {

  private AutoCompleteTextView myTextView01;
  private MultiAutoCompleteTextView myTextView02;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    myTextView01 = (AutoCompleteTextView) findViewById(R.id.myTextView01);
    myTextView02 = (MultiAutoCompleteTextView) findViewById(R.id.myTextView02);

    String[] str={"xiaohe","xiaowang","xiaoli","zhanghe","zhangmin","zhaojun","lihe","daming"};
    /*
    * 創建適配器
    * 參數一:上下文
    * 參數二:提示下位框的樣式,不喜歡可以換android.R.layout.*
    * 參數三:下拉框中備選的內容
    */
    ArrayAdapter<String> adapter=new ArrayAdapter<String>(
    this,
    android.R.layout.simple_dropdown_item_1line,
    str);

    //將Adapter設置到AutoCompleteTextView中
    myTextView01.setAdapter(adapter);

    myTextView02.setAdapter(adapter);
    //以","作為分隔符
    myTextView02.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
  }
}

以上是“Android怎么實現自動文本框提示功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

德令哈市| 泊头市| 社会| 惠东县| 文化| 呼伦贝尔市| 汽车| 靖远县| 民县| 呼和浩特市| 永新县| 滕州市| 封丘县| 太仓市| 墨玉县| 武功县| 博罗县| 尚义县| 新安县| 竹北市| 宿迁市| 新津县| 平遥县| 兖州市| 若尔盖县| 甘南县| 双柏县| 沧源| 沾化县| 龙口市| 资源县| 嘉鱼县| 余庆县| 广丰县| 洪泽县| 邮箱| 丹凤县| 宁蒗| 荔波县| 宜州市| 繁昌县|