Android ApiDemos example resolution (99): Views-& gt; Auto Complete-& gt

Source: Internet
Author: User

In this example. screen Top, 2. screen Bottom, 3. scroll introduces the usage of AutoCompleteTextView. The difference is that the Layout position in AutoCompleteTextView is different. You can see that the AutoCompleteTextView automatically selects a proper position for the prompt Dialog Box Based on its location to be displayed on the screen.

When Google is used for search, the Google search item will automatically give related prompts as the user inputs. The AutoCompleteTextView class provides similar functions. When you input AutoCompleteTextView, autoCompleteTextView displays a prompt list for users to choose from. You can use the Back key to cancel this prompt box at any time.

The content of the prompt box comes from a Data Adapter. You can set threshold to indicate that the prompt box appears after the user has entered more than a few characters.

In this example, add a country name in the prompt box:

[Java]
ArrayAdapter <String> adapter = new ArrayAdapter <String> (this,
Android. R. layout. simple_dropdown_item_1line,
COUNTRIES );
AutoCompleteTextView textView
= (AutoCompleteTextView) findViewById (R. id. edit );
TextView. setAdapter (adapter );
 
...
Static final String [] COUNTRIES = new String [] {
"Afghanistan", "Albania", "Algeria", "American Samoa ",
"Andorra", "Angola", "Anguilla", "Antarctica ",
"Antigua and Barbuda", "Argentina "..

ArrayAdapter <String> adapter = new ArrayAdapter <String> (this,
Android. R. layout. simple_dropdown_item_1line,
COUNTRIES );
AutoCompleteTextView textView
= (AutoCompleteTextView) findViewById (R. id. edit );
TextView. setAdapter (adapter );

...
Static final String [] COUNTRIES = new String [] {
"Afghanistan", "Albania", "Algeria", "American Samoa ",
"Andorra", "Angola", "Anguilla", "Antarctica ",
"Antigua and Barbuda", "Argentina "..

In this example, the AutoCompleteTextView is located at the top of the screen. You can see the position displayed in the prompt box:

 
Author: mapdigit
 

 


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.