Resolve dialog disappear when switching between portrait and screen

Source: Internet
Author: User

Taking Alertdialog as an example

First, the Alertdialog view is encapsulated in an instance of Dialogfragment (Fragmentdealertdialog subclass)

Package com.example.t;

Import Android.app.AlertDialog;
Import Android.app.Dialog;
Import Android.os.Bundle;
Import Android.widget.DatePicker;

public class Dialogpickerfragment extends Android.support.v4.app.DialogFragment {
@Override
Public Dialog Oncreatedialog (Bundle savedinstancestate) {
DatePicker DP = new DatePicker (getactivity ());
return new Alertdialog.builder (Getactivity ())
. Setview (DP)
. Settitle ("Dialog")
. Setpositivebutton ("OK", NULL)
. Create ();
}
}

Second, call in activity

public void Dialogpicker (View v) {
Fragmentmanager fm = Getsupportfragmentmanager ();
Dialogpickerfragment dialog = new Dialogpickerfragment ();
DIALOG.SHOW (FM, "date");
}

Resolve dialog disappear when switching between portrait and screen

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.