android--Control Autocompletetextview Auto Prompt

Source: Internet
Author: User

Android: Control Autocompletetextview Auto Prompt

Enter the information we want to enter in the input box and there will be other hints associated with it, which is implemented in Android using Autocompletetextview.

Xml

< Autocompletetextview      Android:layout_width = "Match_parent"     android:layout_height= "Wrap_content"    android:id= "@+id/autotext"    />

Java

 Public classMainactivityextendsActivity {PrivateAutocompletetextview AutoText;PrivateArrayadapter<string>Arrayadapter; @Overrideprotected voidonCreate (Bundle savedinstancestate) {Super. OnCreate (savedinstancestate);        Setcontentview (r.layout.test); AutoText=(Autocompletetextview) Findviewbyid (R.id.autotext); String [] Arr={"AA", "AaB", "AAC"}; Arrayadapter=NewArrayadapter<string> ( This, Android.        R.layout.simple_list_item_1,arr);    Autotext.setadapter (Arrayadapter); }}
Autocompletetextview Common Properties
Android:completionhint Set the prompt title that appears in the drop-down menu
Android:completionthreshold Set how many characters the user will enter at least to display a prompt
Android:dropdownhorizontaloffset The drop-down menu is offset horizontally between the text boxes. The default is left-aligned with the text box
Android:dropdownheight The height of the drop-down menu
Android:dropdownwidth The width of the drop-down menu
Android:singleline Single-line display
Android:dropdownverticaloffset Vertical offset

android--control Autocompletetextview Automatic prompting

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.