com.bangqu.eshow.util.ESDialogUtil.java Source code

Java tutorial

Introduction

Here is the source code for com.bangqu.eshow.util.ESDialogUtil.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.bangqu.eshow.util;

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

import com.bangqu.eshow.fragment.ESAlertDialogFragment;
import com.bangqu.eshow.fragment.ESAlertDialogFragment.AbDialogOnClickListener;
import com.bangqu.eshow.fragment.ESDialogFragment.AbDialogOnLoadListener;
import com.bangqu.eshow.fragment.ESLoadDialogFragment;
import com.bangqu.eshow.fragment.ESProgressDialogFragment;
import com.bangqu.eshow.fragment.ESRefreshDialogFragment;
import com.bangqu.eshow.fragment.ESSampleDialogFragment;

// TODO: Auto-generated Javadoc
/**
 * Dialog.
 *
 */

public class ESDialogUtil {

    /** dialog */
    public static String dialogTag = "dialog";

    public static int ThemeHoloLightDialog = android.R.style.Theme_Holo_Light_Dialog;

    public static int ThemeLightPanel = android.R.style.Theme_Light_Panel;

    private static int defaultStyle = ThemeHoloLightDialog;

    /**
     * ??.
     * @param view
     * @return
     */
    public static ESSampleDialogFragment showFullScreenDialog(View view) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        // Create and show the dialog.
        ESSampleDialogFragment newFragment = ESSampleDialogFragment.newInstance(DialogFragment.STYLE_NORMAL,
                android.R.style.Theme_Black_NoTitleBar_Fullscreen);
        newFragment.setContentView(view);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //  
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * ???.
     * @param view
     */
    public static void showDialog(Context context, DialogFragment fragment) {
        FragmentActivity activity = (FragmentActivity) context;
        fragment.show(activity.getFragmentManager(), dialogTag);
    }

    /**
     * ?.
     * @param view
     */
    public static ESSampleDialogFragment showDialog(View view) {
        return showDialog(view, Gravity.CENTER);
    }

    /**
     * 
     * ???.
     * @param view
     * @param gravity ?
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int gravity) {
        return showDialog(view, gravity, defaultStyle);
    }

    /**
     * 
     * ???.
     * @param view
     * @param gravity ?
     * @param style
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int gravity, int style) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        // Create and show the dialog.
        ESSampleDialogFragment newFragment = ESSampleDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE,
                style, gravity);
        newFragment.setContentView(view);

        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, dialogTag);

        return newFragment;
    }

    /**
     * ?
     * @param view
     * @param onCancelListener
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, DialogInterface.OnCancelListener onCancelListener) {
        return showDialog(view, Gravity.CENTER, defaultStyle, onCancelListener);
    }

    /**
     * ?
     * @param view
     * @param onCancelListener
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int style,
            DialogInterface.OnCancelListener onCancelListener) {
        return showDialog(view, Gravity.CENTER, style, onCancelListener);
    }

    /**
     * 
     * ???.
     * @param view
     * @param gravity ?
     * @param style
     * @param onCancelListener?
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int gravity, int style,
            DialogInterface.OnCancelListener onCancelListener) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        // Create and show the dialog.
        ESSampleDialogFragment newFragment = ESSampleDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE,
                style, gravity);
        newFragment.setContentView(view);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //   
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.setOnCancelListener(onCancelListener);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * 
     * ???.
     * @param view
     * @param animEnter
     * @param animExit
     * @param animPopEnter
     * @param animPopExit
     * @param onCancelListener
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int animEnter, int animExit, int animPopEnter,
            int animPopExit, DialogInterface.OnCancelListener onCancelListener) {
        return showDialog(view, animEnter, animExit, animPopEnter, animPopExit, Gravity.CENTER, defaultStyle,
                onCancelListener);
    }

    /**
     * 
     * ???.
     * @param view
     * @param animEnter
     * @param animExit
     * @param animPopEnter
     * @param animPopExit
     * @param onCancelListener
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int animEnter, int animExit, int animPopEnter,
            int animPopExit, int style, DialogInterface.OnCancelListener onCancelListener) {
        return showDialog(view, animEnter, animExit, animPopEnter, animPopExit, Gravity.CENTER, style,
                onCancelListener);
    }

    /**
     * 
     * ???.
     * @param view
     * @param animEnter
     * @param animExit
     * @param animPopEnter
     * @param animPopExit
     * @param gravity
     * @param onCancelListener
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int animEnter, int animExit, int animPopEnter,
            int animPopExit, int gravity, int style, DialogInterface.OnCancelListener onCancelListener) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        // Create and show the dialog.
        ESSampleDialogFragment newFragment = ESSampleDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE,
                style, gravity);
        newFragment.setContentView(view);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        ft.setCustomAnimations(animEnter, animExit, animPopEnter, animPopExit);
        newFragment.setOnCancelListener(onCancelListener);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * ?.
     * @param view
     * @param animEnter
     * @param animExit
     * @param animPopEnter
     * @param animPopExit
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int animEnter, int animExit, int animPopEnter,
            int animPopExit) {
        return showDialog(view, animEnter, animExit, animPopEnter, animPopExit, Gravity.CENTER, defaultStyle);
    }

    /**
     * ?.
     * @param view
     * @param animEnter
     * @param animExit
     * @param animPopEnter
     * @param animPopExit
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int animEnter, int animExit, int animPopEnter,
            int animPopExit, int style) {
        return showDialog(view, animEnter, animExit, animPopEnter, animPopExit, Gravity.CENTER, style);
    }

    /**
     * 
     * ???.
     * @param view
     * @param animEnter
     * @param animExit
     * @param animPopEnter
     * @param animPopExit
     * @param gravity ?
     * @return
     */
    public static ESSampleDialogFragment showDialog(View view, int animEnter, int animExit, int animPopEnter,
            int animPopExit, int gravity, int style) {
        FragmentActivity activity = (FragmentActivity) view.getContext();
        // Create and show the dialog.
        ESSampleDialogFragment newFragment = ESSampleDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE,
                style, gravity);
        newFragment.setContentView(view);
        //
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        ft.setCustomAnimations(animEnter, animExit, animPopEnter, animPopExit);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * ??.
     * @param context the context
     * @param indeterminateDrawable
     * @param message the message
     */
    public static ESLoadDialogFragment showLoadDialog(Context context, int indeterminateDrawable, String message) {
        ESLoadDialogFragment dialogFragment = showLoadDialog(context, indeterminateDrawable, message, defaultStyle);
        dialogFragment.setCancelable(false);
        return dialogFragment;
    }

    /**
     * ??.
     * @param context the context
     * @param indeterminateDrawable
     * @param message the message
     */
    public static ESLoadDialogFragment showLoadDialog(Context context, int indeterminateDrawable, String message,
            AbDialogOnLoadListener abDialogOnLoadListener) {
        return showLoadDialog(context, indeterminateDrawable, message, defaultStyle, abDialogOnLoadListener);
    }

    /**
     * ??.
     * @param context the context
     * @param indeterminateDrawable
     * @param message the message
     * @param style
     */
    public static ESLoadDialogFragment showLoadDialog(Context context, int indeterminateDrawable, String message,
            int style) {
        FragmentActivity activity = (FragmentActivity) context;
        ESLoadDialogFragment newFragment = ESLoadDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE, style);
        newFragment.setIndeterminateDrawable(indeterminateDrawable);
        newFragment.setMessage(message);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * ??.
     * @param context the context
     * @param indeterminateDrawable
     * @param message the message
     * @param style
     * @param abDialogOnRefreshListener
     */
    public static ESLoadDialogFragment showLoadDialog(Context context, int indeterminateDrawable, String message,
            int style, AbDialogOnLoadListener abDialogOnLoadListener) {
        FragmentActivity activity = (FragmentActivity) context;
        ESLoadDialogFragment newFragment = ESLoadDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE, style);
        newFragment.setIndeterminateDrawable(indeterminateDrawable);
        newFragment.setMessage(message);
        newFragment.setAbDialogOnLoadListener(abDialogOnLoadListener);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * ??.
     * @param context the context
     * @param indeterminateDrawable
     * @param message the message
     * @param abDialogOnRefreshListener
     */
    public static ESRefreshDialogFragment showRefreshDialog(Context context, int indeterminateDrawable,
            String message) {
        return showRefreshDialog(context, indeterminateDrawable, message, defaultStyle);
    }

    /**
     * ??.
     * @param context
     * @param indeterminateDrawable
     * @param message
     * @param abDialogOnRefreshListener
     * @return
     */
    public static ESRefreshDialogFragment showRefreshDialog(Context context, int indeterminateDrawable,
            String message, AbDialogOnLoadListener abDialogOnLoadListener) {
        return showRefreshDialog(context, indeterminateDrawable, message, defaultStyle, abDialogOnLoadListener);
    }

    /**
     * ??.
     * @param context the context
     * @param indeterminateDrawable
     * @param message the message
     * @param style
     */
    public static ESRefreshDialogFragment showRefreshDialog(Context context, int indeterminateDrawable,
            String message, int style) {
        FragmentActivity activity = (FragmentActivity) context;
        ESRefreshDialogFragment newFragment = ESRefreshDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE,
                style);
        newFragment.setIndeterminateDrawable(indeterminateDrawable);
        newFragment.setMessage(message);
        newFragment.setAbDialogOnLoadListener(null);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * ??.
     * @param context
     * @param indeterminateDrawable
     * @param message
     * @param style
     * @param abDialogOnRefreshListener
     * @return
     */
    public static ESRefreshDialogFragment showRefreshDialog(Context context, int indeterminateDrawable,
            String message, int style, AbDialogOnLoadListener abDialogOnLoadListener) {
        FragmentActivity activity = (FragmentActivity) context;
        ESRefreshDialogFragment newFragment = ESRefreshDialogFragment.newInstance(DialogFragment.STYLE_NO_TITLE,
                style);
        newFragment.setIndeterminateDrawable(indeterminateDrawable);
        newFragment.setMessage(message);
        newFragment.setAbDialogOnLoadListener(abDialogOnLoadListener);
        FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
        //    
        ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
        newFragment.show(ft, dialogTag);
        return newFragment;
    }

    /**
     * ??Fragment.
     * @param context the context
     */
    public static void removeDialog(final Context context) {
        try {
            FragmentActivity activity = (FragmentActivity) context;
            FragmentTransaction ft = activity.getFragmentManager().beginTransaction();
            //    
            ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_CLOSE);
            Fragment prev = activity.getFragmentManager().findFragmentByTag(dialogTag);
            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());
        ESViewUtil.removeSelfFromParent(view);
    }

}