Show ProgressDialog in Fragment class
Asked Answered
G

2

30

I am trying to show a ProgressDialog within a Fragment class. The following code just works within an Activity class but not for Fragment. Can somebody please help me on this, why this ProgressDialog implementaion just works within an Activity and not for a Fragment?

private class ProcessUpdateProfile extends
        AsyncTask<String, String, JSONObject> {

    private ProgressDialog nDialog;

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        nDialog = new ProgressDialog(PFragment.this); //Here I get an error: The constructor ProgressDialog(PFragment) is undefined
        nDialog.setMessage("Loading..");
        nDialog.setTitle("Checking Network");
        nDialog.setIndeterminate(false);
        nDialog.setCancelable(true);
        nDialog.show();

    }
}
Gilman answered 18/7, 2014 at 12:31 Comment(0)
R
68

Try this in Fragment

 nDialog = new ProgressDialog(getActivity()); 
Rowney answered 18/7, 2014 at 12:32 Comment(0)
S
15

ProgressDialog take Context input so use getActivity() in object creation.

ProgressDialog dialog = ProgressDialog.show(getActivity(), "Loading...", "Please wait...", true);
Sherrisherrie answered 18/7, 2014 at 12:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.