This article describes the method of Android programming to implement the AlertDialog custom popup dialog box. Share it for your reference, as follows:
A dialog box pops up to display a custom layout file
A dialog box pops up to prompt you to set a password or login password
private void showSetPasswordDialod(){ View dialogView=(.protect_first_dialog, null); builder=new (this); ("Set anti-theft password"); (dialogView); //The components in the layout file can be obtained by loading the layout and performing corresponding business logic processing password=(EditText) (.protect_first_password1); repassword=(EditText) (.protect_first_password2); confirm=(Button) (.protect_password_confirm); cancle=(Button) (.protect_password_cancle); final AlertDialog dialog=(); (); (new () { @Override public void onClick(View v) { (getBaseContext(), ().toString(), 0).show(); } }); (new OnClickListener() { @Override public void onClick(View v) { (); (); } }); }
protect_first_dialog.xml is a custom normal layout file
For more information about Android related content, please check out the topic of this site:Android development introduction and advanced tutorial》、《Android debugging skills and solutions to common problems》、《Summary of the usage of basic Android components》、《Android View View Tips Summary》、《Android layout layout tips summary"and"Android control usage summary》
I hope this article will be helpful to everyone's Android programming design.