Android study note 20: Automatically complete text box

Source: Internet
Author: User

Previous: http://www.bkjia.com/kf/201201/115826.html

In Android, AutoCompleteTextView can automatically complete text input boxes, which is similar to Ajax in Web pages. When using this function, you must specify an adapter to set the complete text.

 

 

<? Xml version = "1.0" encoding = "UTF-8"?>
<LinearLayout xmlns: android = "http://schemas.android.com/apk/res/android"
Android: orientation = "vertical"
Android: layout_width = "fill_parent"
Android: layout_height = "fill_parent"
>
<! -- Define an Automatic completion text box, specify a character to input and prompt -->
<! -- Android: dropDownHorizontalOffse: sets the horizontal offset of the drop-down list -->
<AutoCompleteTextView
Android: id = "@ + id/auto"
Android: layout_width = "fill_parent"
Android: layout_height = "wrap_content"
Android: completionHint = "Please select your favorite song"
Android: dropDownHorizontalOffset = "20dp"
Android: completionThreshold = "1"/> <! -- Specify the number of words to be input and a response prompt -->

</LinearLayout>
<? Xml version = "1.0" encoding = "UTF-8"?>
<LinearLayout xmlns: android = "http://schemas.android.com/apk/res/android"
Android: orientation = "vertical"
Android: layout_width = "fill_parent"
Android: layout_height = "fill_parent"
>
<! -- Define an Automatic completion text box, specify a character to input and prompt -->
<! -- Android: dropDownHorizontalOffse: sets the horizontal offset of the drop-down list -->
<AutoCompleteTextView
Android: id = "@ + id/auto"
Android: layout_width = "fill_parent"
Android: layout_height = "wrap_content"
Android: completionHint = "Please select your favorite song"
Android: dropDownHorizontalOffset = "20dp"
Android: completionThreshold = "1"/> <! -- Specify the number of words to be input and a response prompt -->
 
</LinearLayout>


Public class AutoCompleteTextViewTest extends Activity
{
// Define a string array as the prompt text
String [] books = new String [] {
"Sun Yanzi-hey jude ",
"Sun Yanzi-the moment ",
"Sun Yanzi-tonight I feel close to you ",
"Sun Yanzi-leave me alone"
};
@ Override
Public void onCreate (Bundle savedInstanceState)
{
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
// Create an ArrayAdapter and encapsulate the Array
ArrayAdapter <String> aa = new ArrayAdapter <String> (
This,
Android. R. layout. simple_dropdown_item_1line,
Books );
AutoCompleteTextView actv = (AutoCompleteTextView)
FindViewById (R. id. auto );
// Set the Adapter
Actv. setAdapter (aa );
}
}
Public class AutoCompleteTextViewTest extends Activity
{
// Define a string array as the prompt text
String [] books = new String [] {
"Sun Yanzi-hey jude ",
"Sun Yanzi-the moment ",
"Sun Yanzi-tonight I feel close to you ",
"Sun Yanzi-leave me alone"
};
@ Override
Public void onCreate (Bundle savedInstanceState)
{
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
// Create an ArrayAdapter and encapsulate the Array
ArrayAdapter <String> aa = new ArrayAdapter <String> (
This,
Android. R. layout. simple_dropdown_item_1line,
Books );
AutoCompleteTextView actv = (AutoCompleteTextView)
FindViewById (R. id. auto );
// Set the Adapter
Actv. setAdapter (aa );
}
}


From snoopy's column

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.