【Android】自動提示匹配之AutoCompleteTextView
java.lang.Object | ||||
↳ | android.view.View | |||
↳ | android.widget.TextView | |||
↳ | android.widget.EditText | |||
↳ | android.widget.AutoCompleteTextView |
Known
Direct Subclasses
An editable text view that shows completion suggestions automatically while the user is typing. The list of suggestions is displayed in a drop down menu from which
the user can choose an item to replace the content of the edit box with.
簡單的講一個類似百度,google等輸入搜尋字串時自動提示的功能:
常用方法總結
下面是一個官方的示例:
To create a text entry widget that provides auto-complete suggestions, use the
In this tutorial, you will create a
【1】Create
an XML file named
list_item.xml and save it inside theres/layout/ folder. Edit the file to look
like this:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp"
android:textColor="#000">
</TextView>
This file defines a simple TextView that
will be used for each item that appears in the list of suggestions.
這個檔案定義了一個簡單的TextView,用來即時顯示自動匹配的選項
【2】Open
the
res/layout/main.xml file and insert the following:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Country" />
<AutoCompleteTextView android:id="@+id/autocomplete_country"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"/>
</LinearLayout>
The TextView is
a label that introduces theAutoCompleteTextView widget.
【3】Open
HelloAutoComplete.java and
insert the following code for theonCreate() method:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete_country);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, COUNTRIES);
textView.setAdapter(adapter);
}
After the content view is set to the main.xml layout, theAutoCompleteTextView widget
is captured from the layout withfindViewById(int) .
A newArrayAdapter is then initialized to bind thelist_item.xml layout
to each list item in theCOUNTRIES string array (defined in the next step). Finally,setAdapter() is
called to associate theArrayAdapter with theAutoCompleteTextView widget
so that the string array will populate the list of suggestions.
這裡new了一個ArrayAdapter用來作為adapter.
【4】Inside the
HelloAutoComplete class,
add the string array:
static final String[] COUNTRIES = new String[] {
"Afghanistan", "Albania", "Algeria", "American Samoa", "Andorra",
"Angola", "Anguilla", "Antarctica", "Antigua and Barbuda", "Argentina",
"Armenia", "Aruba", "Australia", "Austria", "Azerbaijan",
"Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium",
"Belize", "Benin", "Bermuda", "Bhutan", "Bolivia",
"Bosnia and Herzegovina", "Botswana", "Bouvet Island", "Brazil", "British Indian Ocean Territory",
"British Virgin Islands", "Brunei", "Bulgaria", "Burkina Faso", "Burundi",
"Cote d'Ivoire", "Cambodia", "Cameroon", "Canada", "Cape Verde",
"Cayman Islands", "Central African Republic", "Chad", "Chile", "China",
"Christmas Island", "Cocos (Keeling) Islands", "Colombia", "Comoros", "Congo",
"Cook Islands", "Costa Rica", "Croatia", "Cuba", "Cyprus", "Czech Republic",
"Democratic Republic of the Congo", "Denmark", "Djibouti", "Dominica", "Dominican Republic",
"East Timor", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea",
"Estonia", "Ethiopia", "Faeroe Islands", "Falkland Islands", "Fiji", "Finland",
"Former Yugoslav Republic of Macedonia", "France", "French Guiana", "French Polynesia",
"French Southern Territories", "Gabon", "Georgia", "Germany", "Ghana", "Gibraltar",
"Greece", "Greenland", "Grenada", "Guadeloupe", "Guam", "Guatemala", "Guinea", "Guinea-Bissau",
"Guyana", "Haiti", "Heard Island and McDonald Islands", "Honduras", "Hong Kong", "Hungary",
"Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica",
"Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Kuwait", "Kyrgyzstan", "Laos",
"Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg",
"Macau", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands",
"Martinique", "Mauritania", "Mauritius", "Mayotte", "Mexico", "Micronesia", "Moldova",
"Monaco", "Mongolia", "Montserrat", "Morocco", "Mozambique", "Myanmar", "Namibia",
"Nauru", "Nepal", "Netherlands", "Netherlands Antilles", "New Caledonia", "New Zealand",
"Nicaragua", "Niger", "Nigeria", "Niue", "Norfolk Island", "North Korea", "Northern Marianas",
"Norway", "Oman", "Pakistan", "Palau", "Panama", "Papua New Guinea", "Paraguay", "Peru",
"Philippines", "Pitcairn Islands", "Poland", "Portugal", "Puerto Rico", "Qatar",
"Reunion", "Romania", "Russia", "Rwanda", "Sqo Tome and Principe", "Saint Helena",
"Saint Kitts and Nevis", "Saint Lucia", "Saint Pierre and Miquelon",
"Saint Vincent and the Grenadines", "Samoa", "San Marino", "Saudi Arabia", "Senegal",
"Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands",
"Somalia", "South Africa", "South Georgia and the South Sandwich Islands", "South Korea",
"Spain", "Sri Lanka", "Sudan", "Suriname", "Svalbard and Jan Mayen", "Swaziland", "Sweden",
"Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "The Bahamas",
"The Gambia", "Togo", "Tokelau", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey",
"Turkmenistan", "Turks and Caicos Islands", "Tuvalu", "Virgin Islands", "Uganda",
"Ukraine", "United Arab Emirates", "United Kingdom",
"United States", "United States Minor Outlying Islands", "Uruguay", "Uzbekistan",
"Vanuatu", "Vatican City", "Venezuela", "Vietnam", "Wallis and Futuna", "Western Sahara",
"Yemen", "Yugoslavia", "Zambia", "Zimbabwe"
};
This is the list of suggestions that will be provided in a drop-down list when the user types into the AutoCompleteTextView widget.
【5】Run
the application.
|
More Information
Note that using a hard-coded string array is not a recommended design practice because your application code should focus on behavior, not content. Application content such as strings should be externalized from the code in order
to make modifications to the content easier and facilitate localization of the content. The hard-coded strings are used in this tutorial only to make it simple and focus on theAutoCompleteTextView
widget.
Instead, your application should declare such string arrays in an XML file. This can be done with a<string-array<
resource in your projectres/values/strings.xml
file.
For example:
ArrayAdapter
,
replace the originalArrayAdapter
constructor line with the following:
相關文章
- Android UI控制元件系列:AutoCompleteTextView(自動提示)AndroidUI控制元件TextView
- Android--自動搜尋提示Android
- jQuery搜尋框關鍵字自動匹配提示詳解jQuery
- Android--多選自動搜尋提示Android
- Android UI系列-----EditText和AutoCompleteTextViewAndroidUITextView
- Android UI 設計(13):AutoCompleteTextViewAndroidUITextView
- TextView、TextView的子類之EditText、EditText的子類之自動完成文字框(AutoCompleteTextView)的功能與用法TextView
- [android]android自動化測試十三之monkeyRunner自動化框架Android框架
- AC 自動機——多模式串匹配模式
- [android]android自動化測試十三之sciroccoAndroid
- [android]android自動化測試五之RobolectricAndroid
- [android]android自動化測試十五之junitRepoterAndroid
- [android]android自動化測試九之monkeyRecordAndroid
- Android 自動化測試之 MonkeyAndroid
- android之狀態列提示Android
- 4.AutoCompleteTextViewTextView
- [Android]android自動化測試十六之calabash-androidAndroid
- 實現動態自動匹配輸入的內容
- nodejs 自動程式碼提示NodeJS
- ibatis 新增DTD 自動提示BAT
- [android]android自動化測試七之動態AVD硬體引數Android
- [android]android自動化測試二之命令列建立AVDAndroid命令列
- eclipse配置程式碼自動提示Eclipse
- [android]android自動化測試十四之dumpsys效能測試Android
- [android]android自動化測試六之命令列編譯APKAndroid命令列編譯APK
- [android]android自動化測試十三之JavaMonkey跨APP操作AndroidJavaAPP
- [android]android自動化測試十二之程式碼控制截圖Android
- [android]android自動化測試四之Monkey與MonkeyRunnerAndroid
- Android開發之自動填充簡訊驗證碼Android
- eclipse設定程式碼自動提示Eclipse
- Eclipse Auto Activation 自動提示設定Eclipse
- Android開源音樂播放器之自動滾動歌詞Android播放器
- [android]android自動化測試十之單元測試例項Android
- AutoEx應用崩潰自動匹配Stack Overflow的解答應用崩潰
- jQuery的搜尋關鍵詞自動匹配外掛jQuery
- [android]android自動化測試Android
- Android自動化測試之Monkeyrunner從零開始Android
- android自動化測試六之命令列編譯APKAndroid命令列編譯APK