Android to modify the source to solve the Alertdialog Touch dialog box Edge disappearing problem _android

Source: Internet
Author: User

When studying its parent class, it is found that you can set such a property and then call the two methods after AlertDialog.Builder.create ()

Method One:

Setcanceledontouchoutside (false); When this method is invoked, it does not work where it is outside the dialog box. Pressing the return key also works

Method Two:

Setcanceleable (false); When this method is invoked, it does not work where it is outside the dialog box. Pressing the return key will not work

Both methods belong to the dialog method, access to the source code

The revised source code is as follows:

Copy Code code as follows:

Case 1:
DismissDialog (1);
New Builder (Splashactivity.this). Settitle ("hint"). Setcancelable (False)
. Setmessage ("Get software initialization information failed!") \ nplease check your network for fluency. ")
. Setpositivebutton ("Confirm", new Onclicklistener () {
@Override
public void OnClick (Dialoginterface dialog, int which) {
Dialog.dismiss ();
SplashActivity.this.finish ();
}
). Show ();

Break

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.