com.aoppp.gatewaymaster.dialogs.DialogUtil.java Source code

Java tutorial

Introduction

Here is the source code for com.aoppp.gatewaymaster.dialogs.DialogUtil.java

Source

/*
 * Copyright (C) 2012 www.amsoft.cn
 * 
 * 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 com.aoppp.gatewaymaster.dialogs;

import android.app.Fragment;
import android.app.FragmentTransaction;
import android.content.Context;
import android.support.v4.app.FragmentActivity;
import android.view.View;

import com.aoppp.gatewaymaster.utils.ViewUtil;

public class DialogUtil {

    /** dialog tag */
    private static String mDialogTag = "dialog";

    /**
     * ???dialog String.
     * @param context
     * @param icon
     * @param title ?
     *
     */
    public static AlertDialogFragment showAlertDialog(Context context, int icon, String title, String message) {
        FragmentActivity activity = (FragmentActivity) context;
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(icon, title, message, null, null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ?string?.
     * @param context
     * @param icon
     * @param title ?
     * @param message ???
     * @param onClickListener ?
     */
    public static AlertDialogFragment showAlertDialog(Context context, int icon, String title, String message,
            AlertDialogFragment.DialogOnClickListener onClickListener) {
        FragmentActivity activity = (FragmentActivity) context;
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(icon, title, message, null,
                onClickListener);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ?String?.
     * @param context
     * @param title ?
     * @param message ???
     * @param onClickListener ?
     */
    public static AlertDialogFragment showAlertDialog(Context context, String title, String message,
            AlertDialogFragment.DialogOnClickListener onClickListener) {
        FragmentActivity activity = (FragmentActivity) context;
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(0, title, message, null, onClickListener);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ?View.
     * @param view ?
     */
    public static AlertDialogFragment showAlertDialog(View view) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(0, null, null, view, null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ?String.
     * @param context
     *
     */
    public static AlertDialogFragment showAlertDialog(Context context, String message) {
        FragmentActivity activity = (FragmentActivity) context;
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(0, null, message, null, null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ???dialog View.
     * @param icon
     * @param title ?
     * @param view  ???
     */
    public static AlertDialogFragment showAlertDialog(int icon, String title, View view) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(icon, title, null, view, null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ?View?.
     * @param icon
     * @param title ?
     * @param view ???
     * @param onClickListener ?
     */
    public static AlertDialogFragment showAlertDialog(int icon, String title, View view,
            AlertDialogFragment.DialogOnClickListener onClickListener) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(icon, title, null, view, onClickListener);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ???dialog View.
     * @param title ?
     * @param view  ???
     */
    public static AlertDialogFragment showAlertDialog(String title, View view) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(0, title, null, view, null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ?View?.
     * @param title ?
     * @param view ???
     * @param onClickListener ?
     */
    public static AlertDialogFragment showAlertDialog(String title, View view,
            AlertDialogFragment.DialogOnClickListener onClickListener) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(0, title, null, view, onClickListener);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ???dialog String.
     * @param context
     * @param title ?
     *
     */
    public static AlertDialogFragment showAlertDialog(Context context, String title, String message) {
        FragmentActivity activity = (FragmentActivity) context;
        AlertDialogFragment newFragment = AlertDialogFragment.newInstance(0, title, message, null, null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ??.
     * 
     * @param context
     *            the context
     * @param indeterminateDrawable
     *            0
     * @param message
     *            the message
     */
    public static ProgressDialogFragment showProgressDialog(Context context, int indeterminateDrawable,
            String message) {
        FragmentActivity activity = (FragmentActivity) context;
        ProgressDialogFragment newFragment = ProgressDialogFragment.newInstance(indeterminateDrawable, message);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        // 
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, mDialogTag);
        return newFragment;
    }

    /**
     * ??Fragment.
     * 
     * @param context
     *            the context
     */
    public static void removeDialog(Context context) {
        try {
            FragmentActivity activity = (FragmentActivity) context;
            FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
            // 
            ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_CLOSE);
            Fragment prev = activity.getFragmentManager().findFragmentByTag(mDialogTag);
            if (prev != null) {
                ft.remove(prev);
            }
            ft.addToBackStack(null);
            ft.commit();
        } catch (Exception e) {
            // ?Activity??
            e.printStackTrace();
        }
    }

    /**
     * ??FragmentView
     * 
     * @param view
     */
    public static void removeDialog(View view) {
        removeDialog(view.getContext());
        ViewUtil.removeSelfFromParent(view);
    }

}