me.evervasquez.sociales.fragment.dialog.ProgressDialogFragment.java Source code

Java tutorial

Introduction

Here is the source code for me.evervasquez.sociales.fragment.dialog.ProgressDialogFragment.java

Source

/*
 *
 *  * Copyright (C) 2015 eveR Vsquez.
 *  *
 *  * Licensed under the Apache License, Version 2.0 (the "License");
 *  * you may not use this file except in compliance with the License.
 *  * You may obtain a copy of the License at
 *  *
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 *  *
 *  * Unless required by applicable law or agreed to in writing, software
 *  * distributed under the License is distributed on an "AS IS" BASIS,
 *  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  * See the License for the specific language governing permissions and
 *  * limitations under the License.
 *
 */
package me.evervasquez.sociales.fragment.dialog;

import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.Fragment;
import android.util.Log;

import me.evervasquez.sociales.fragment.base.BaseFragment;

public class ProgressDialogFragment extends DialogFragment {
    private static final String TAG = ProgressDialogFragment.class.getSimpleName();
    private static final String PARAM_MESSAGE = "ProgressDialogFragment.PARAM_MESSAGE";

    public static ProgressDialogFragment newInstance(String message) {
        Log.d(TAG, "ProgressDialogFragment.newInstance: " + message);

        Bundle args = new Bundle();
        args.putString(PARAM_MESSAGE, message);

        ProgressDialogFragment progressDialogFragment = new ProgressDialogFragment();
        progressDialogFragment.setArguments(args);
        return progressDialogFragment;
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        Log.d(TAG, "ProgressDialogFragment.onCreateDialog");

        final Bundle args = getArguments();

        final String paramMessage = args.getString(PARAM_MESSAGE);

        Dialog dialog = ProgressDialog.show(getActivity(), "Executing request", paramMessage);
        dialog.setCancelable(true);
        return dialog;
    }

    @Override
    public void onCancel(DialogInterface dialog) {
        Log.d(TAG, "ProgressDialogFragment.onCancel");

        super.onCancel(dialog);

        Fragment fragment = getTargetFragment();

        // stop all requests on cancel
        if (fragment != null && fragment instanceof BaseFragment) {
            ((BaseFragment) fragment).onRequestCancel();
        }
    }
}