您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Android中自動完成文本框AutoCompleteTextView怎么用”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Android中自動完成文本框AutoCompleteTextView怎么用”這篇文章吧。
具體如下:
通常來說自動完成文本框(AutoCompleteTextView)從EditText派生而出,實際上他也是一個編輯框,但他比普通的編輯框多了一個功能:當用戶輸入一定字符后,自動完成文本框會顯示一個下拉菜單,供用戶從中選擇,當用戶選擇了某個菜單項過后,AutoCompleteTextView就會按用戶選擇自動填寫該文本框。
自動完成文本框(AutoCompleteTextView),用于實現允許用戶輸入一定字符后,顯示一個下拉菜單,供用戶從中選擇,當用戶選擇某個選項之后,按用戶選擇自動填寫該文本框。
語法格式:
<AutoCompleteTextView 屬性列表> </AutoCompleteTextView>
AutoCompleteTextView組件繼承EditText,所以它支持EditText組件提供的屬性,同時,該組件還有以下屬性:
屬性 | 功能 |
---|---|
android:completionHint | 下拉列表下面的說明性文字 |
android:completionThreshold | 彈出下來列表的最小字符個數 |
android:dropDownAnchor | 下拉列表的錨點或掛載點 |
android:dropDownHeight | 下拉列表高度 |
android:dropDownWidth | 下拉列表寬度 |
android:dropDownHorizontalOffset | 下拉列表距離左邊的距離 |
android:dropDownVerticalOffset | 下拉列表距離上邊的距離 |
android:dropDownSelector | 下拉列表被選中的行的背景 |
android:popupBackground | 下拉列表的背景 |
效果如下所示:
具體實現步驟:
界面布局 res/layout/main.xml:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal" android:background="#000000"> <AutoCompleteTextView android:layout_height="wrap_content" android:text="" android:id="@+id/autoCompleteTextView1" android:completionThreshold="2" android:completionHint="請輸入內容" android:background="#333333" android:layout_marginLeft="10dp" android:layout_weight="7" android:layout_width="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="10dp"/> </LinearLayout>
MainActivity.java文件中:
首先設置保存下拉菜單列表項內容:
//此字符串是要在下拉菜單中顯示的列表項 private static final String[] COUNTRIES=new String[]{"jb51","jb51億速云", "jb51腳本下載","jb51軟件下載","www.jb51.net","億速云"};
onCreate()
方法中獲取自動完成文本框,并為自動完成文本框設置適配器,具體實現代碼如下:
//獲取自動完成文本框 final AutoCompleteTextView textView=(AutoCompleteTextView)findViewById(R.id.autoCompleteTextView1); //注意ArrayAdapter與SimpleAdapter的區(qū)別 //創(chuàng)建一個ArrayAdapter適配器 ArrayAdapter<String> adapter=new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line,COUNTRIES); textView.setAdapter(adapter);//為自動完成文本框設置適配器
最后為搜索按鈕添加事件監(jiān)聽器:
//為搜索按鈕添加事件監(jiān)聽器 button.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { Toast.makeText(MainActivity.this, textView.getText().toString(),Toast.LENGTH_SHORT).show(); } });
以上是“Android中自動完成文本框AutoCompleteTextView怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。