Android development Tips 2-avoid date verification in EditText. Development tips: edittext

Source: Internet
Author: User

Android development Tips 2-avoid date verification in EditText. Development tips: edittext

Developers know that the data in the verification form is annoying and error-prone, as is the verification in the Date input box. We can develop a Button that looks the same as EditText. After you click this Button, a DatePicker control is displayed.

To implement the above idea, you need to change the default background of the Button control to the background of EditText.

Let's take a look at main. xml:

<LinearLayout xmlns: android = "http://schemas.android.com/apk/res/android" xmlns: tools = "http://schemas.android.com/tools" android: layout_width = "match_parent" android: layout_height = "match_parent" android: orientation = "vertical"> <Button android: id = "@ + id/btn_date" android: layout_width = "wrap_content" android: layout_height = "wrap_content" android: layout_gravity = "center_horizontal" android: background = "@ android Oid: drawable/edit_text "android: gravity =" center "android: text =" select birthday "> <! -- Android: background = "@ android: drawable/edit_text" background is set to EditText style --> </Button> </LinearLayout>

Then let's take a look at the MainActivity. java file:

Package com. yayun. edittextdatedemo; import android. app. activity; import android. app. datePickerDialog; import android. app. dialog; import android. OS. bundle; import android. view. view; import android. view. view. onClickListener; import android. widget. button; import android. widget. datePicker; public class MainActivity extends Activity {private Button mButton; static final int DATE_DIALOG_ID = 0; private int mYear; private int mMonth; private int mDay; @ Overrideprotected void onCreate (Bundle savedInstanceState) {super. onCreate (savedInstanceState); setContentView (R. layout. activity_main); mButton = (Button) findViewById (R. id. btn_date); mButton. setOnClickListener (new OnClickListener () {@ Overridepublic void onClick (View arg0) {showDialog (DATE_DIALOG_ID); // pop-up dialog box});} private DatePickerDialog. onDateSetListener mDateSetListener = new DatePickerDialog. onDateSetListener () {// listener date setting event @ Overridepublic void onDateSet (DatePicker view, int year, int monthOfYear, int dayOfMonth) {mYear = year; mMonth = monthOfYear; mDay = dayOfMonth; updateDisplay ();} private void updateDisplay () {// set to display mButton. setText (new StringBuilder (). append (mYear ). append ("-"). append (mMonth + 1 ). append ("-"). append (mDay) ;}}; protected dited onCreateDialog (int id) {switch (id) {case DATE_DIALOG_ID: return new DatePickerDialog (this, mDateSetListener, mYear, mMonth, mDay ); default: break;} return null ;}}

Running instance:




Summary

1.Android: background = "@ android: drawable/edit_text": displays the Button as an EditText style;

2. Pay attention to the method of the create date dialog box.







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.