Android DialogFragment 基类的定制

鸿洋博客介绍:DialogFragment的基本使用
好处:
1:使用DialogFragment来管理对话框,当旋转屏幕和按下后退键时可以更好的管理其声明周期,它和Fragment有着基本一致的生命周期
2.DialogFragment也允许开发者把Dialog作为内嵌的组件进行重用,类似Fragment(可以在大屏幕和小屏幕显示出不同的效果)
使用方法:

 Dialoger.build(getActivity())
  .setContentText("你好防盗链发交电费")
  .setContentTitle("标题")
  .setNegativeBtn("重新认证", new Dialoger.OnNegativeListener() {
        @Override public void onNegative(Dialog dialog) {
            dialog.dismiss();
            ....
            ....
    } })
  .setPositiveBtn("确认", new Dialoger.OnPositiveListener() {
 @Override public void onPositive(Dialog dialog) {
 dialog.dismiss();
  ....//对应的操作
  ....
 }
 })
.dialoger.setOnCancelListener(new DialogInterface.OnCancelListener() {
        @Override
        public void onCancel(DialogInterface dialog) {
               view.getViewActivity().finish();
          }
    }). show();

封装:既然DialogFragment比普通的dialog好这么多,岂有不封装哪来用的道理

使用DialogFragment至少需要实现onCreateView或者onCreateDIalog方法。onCreateView即使用定义的xml布局文件展示Dialog。onCreateDialog即利用AlertDialog或者Dialog创建出Dialog。下面的封装采用onCreateView的方式来封装

1.构建dialog 设置基本参数

 public static Dialoger build(FragmentActivity activity, String transactionTag, Bundle args) {
        Dialoger dialoger = new Dialoger();
        dialoger.setActivity(activity);//设置传入的activity对象
        dialoger.setTransactionTag(transactionTag);//设置的tag标志(和Fragment一样,便于利用tag获取当前的Activity对象,来传递数据)
        dialoger.setArguments(args);//设置的bundle参数
        dialoger.setCancelable(false);//初始化设置为不可点击
        dialoger.setTheme(0);//设置没有主题
        dialoger.setContentView(R.layout.dialog_default);//设置默认的dialog的View
        return dialoger;
    }

    public static Dialoger build(FragmentActivity activity) {
        return build(activity, Dialoger.class.getSimpleName(), null);
    }

2.外界传入对应的参数 (标题,context 内容 定义的View)

    private void setActivity(FragmentActivity mActivity) {
        this.mActivity = mActivity;
    }

    private void setTransactionTag(String transactionTag) {
        this.mTransactionTag = transactionTag;
    }

    public Dialoger setContentView(int layoutResID) {
        this.mContentView = LayoutInflater.from(mActivity).inflate(layoutResID, null);
        return this;
    }

    public Dialoger setContentView(View view) {
        this.mContentView = view;
        return this;
    }

    public Dialoger setTheme(int theme) {
        setStyle(DialogFragment.STYLE_NO_TITLE, theme);
        return this;
    }

    public Dialoger setContentTitle(String title) {
        mContentTitle = title;
        return this;
    }

    public Dialoger setContentText(String text) {
        mContentText = text;
        return this;
    }

    public Dialoger setContentTitle(String title, int titleColor) {
        mContentTitle = title;
        mContentTitleColor = titleColor;
        return this;
    }

    public Dialoger setContentText(String text, int textColor) {
        mContentText = text;
        mContentTextColor = textColor;
        return this;
    }

3.对传入进来的参数进行配置

   @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        getDialog().getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));//设置透明背景
        return mContentView;
    }

    @Override
    public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
        if (mCancelListener != null) {//只有当设置了取消监听的时候,才可以设置取消
            setCancelable(true);
        }
        //设置标题
        TextView mTitleView = (TextView) view.findViewById(R.id.dialog_title_tv);
        if (!TextUtils.isEmpty(mContentTitle)) {
            mTitleView.setText(mContentTitle);
            if (mContentTitleColor != 0) {
                mTitleView.setTextColor(mContentTitleColor);
            }
        } else {
            mTitleView.setVisibility(View.GONE);
        }
        //设置内容
        TextView mTextView = (TextView) view.findViewById(R.id.dialog_text_tv);
        if (!TextUtils.isEmpty(mContentText)) {
            mTextView.setText(mContentText);
            if (mContentTextColor != 0) {
                mTextView.setTextColor(mContentTextColor);
            }
        } else {
            mTextView.setVisibility(View.GONE);
        }
        
        //设置 确定 和 取消  按钮
        View buttonPanel = view.findViewById(R.id.buttons_layout);
        buttonPanel.setVisibility(View.GONE);

        boolean negativeEnable = false;
        boolean positiveEnable = false;
        //如果有确定按钮 设置 ----->可点击 内容 监听
        Button negativeButton = (Button) view.findViewById(R.id.btn_negative);
        if (TextUtils.isEmpty(mNegativeText)) {
            negativeButton.setVisibility(View.GONE);
        } else {
            negativeEnable = true;
            buttonPanel.setVisibility(View.VISIBLE);
            negativeButton.setVisibility(View.VISIBLE);
            negativeButton.setText(mNegativeText);
            negativeButton.setOnClickListener(this);
            if (mNegativeTextColor != 0) {
                negativeButton.setTextColor(mNegativeTextColor);
            }
        }
           //如果有取消按钮 设置 ----->可点击 内容 监听
        Button positiveButton = (Button) view.findViewById(R.id.btn_positive);
        if (TextUtils.isEmpty(mPositiveText)) {
            positiveButton.setVisibility(View.GONE);
        } else {
            positiveEnable = true;
            buttonPanel.setVisibility(View.VISIBLE);
            positiveButton.setVisibility(View.VISIBLE);
            positiveButton.setText(mPositiveText);
            positiveButton.setOnClickListener(this);

            if (mPositiveTextColor != 0) {
                positiveButton.setTextColor(mPositiveTextColor);
            }
        }
        
        View contentDivider = view.findViewById(R.id.horizontal_divider);
        View buttonDivider = view.findViewById(R.id.vertical_divider);
        
        //设置布局的分割线 显示和隐藏
        if (positiveEnable) {
            if (negativeEnable) {
                contentDivider.setVisibility(View.VISIBLE);
                buttonDivider.setVisibility(View.VISIBLE);
            } else {
                contentDivider.setVisibility(View.GONE);
                buttonDivider.setVisibility(View.GONE);
            }
            buttonPanel.setVisibility(View.VISIBLE);
        } else {
            if (negativeEnable) {
                contentDivider.setVisibility(View.VISIBLE);
                buttonPanel.setVisibility(View.VISIBLE);
                buttonDivider.setVisibility(View.GONE);
            } else {
                contentDivider.setVisibility(View.GONE);
            }
        }
    }

4.设置确定 取消按钮 和 取消监听

  /**
     * 确认
     *
     * @param text
     * @param listener
     * @return
     */
    public Dialoger setPositiveBtn(String text, OnPositiveListener listener) {
        mPositiveText = text;
        mPositiveListener = listener;
        return this;
    }

    public Dialoger setPositiveColor(int textColor) {
        mPositiveTextColor = textColor;
        return this;
    }
  /**
     * 取消按钮(不是点击dialog其他地方的取消)
     *
     * @param text
     * @param listener
     * @return
     */
    public Dialoger setNegativeBtn(String text, OnNegativeListener listener) {
        mNegativeText = text;
        mNegativeListener = listener;
        return this;
    }

    public Dialoger setNegativeColor(int textColor) {
        mNegativeTextColor = textColor;
        return this;
    }

  
    //取消监听
public void setOnCancelListener(@Nullable DialogInterface.OnCancelListener listener) {
        if (listener != null) {
            mCancelListener = listener;
        }
    }
    //调用dialog的取消
    @Override
    public void onCancel(DialogInterface dialog) {
        super.onCancel(dialog);
        if (mCancelListener != null) {
            mCancelListener.onCancel(dialog);
        }
    }

5.传递 确认 取消 的点击事件来回调 第4条的监听

@Override
    public void onClick(View v) {
        if (v.getId() == R.id.btn_negative) {
            if (mNegativeListener != null) mNegativeListener.onNegative(getDialog());
        } else if (v.getId() == R.id.btn_positive) {
            if (mPositiveListener != null) mPositiveListener.onPositive(getDialog());
        }
    }

6.xml布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              style="@style/DT_DIALOG_THEME"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_gravity="center"
              android:layout_margin="30dip"
              android:background="@drawable/dialog_bg_color"
              android:minWidth="270dp"
              android:orientation="vertical">

    <TextView
        android:id="@+id/dialog_title_tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="20dp"
        android:gravity="center_horizontal"
        android:text="提示"
        android:textColor="#333333"
        android:textSize="18sp"/>

    <TextView
        android:id="@+id/dialog_text_tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:layout_marginTop="30dp"
        android:gravity="center"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:text="提示"
        android:textColor="#686871"
        android:textSize="16sp"/>

    <View
        android:id="@+id/horizontal_divider"
        style="@style/horizontal_divider"/>

    <LinearLayout
        android:id="@+id/buttons_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <Button
            android:id="@+id/btn_negative"
            android:layout_width="0dip"
            android:layout_height="44dip"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:gravity="center"
            android:paddingTop="2dip"
            android:text="取消"
            android:textColor="#8e8e9c"
            android:textSize="17sp"/>

        <View
            android:id="@+id/vertical_divider"
            style="@style/vertical_divider"/>

        <Button
            android:id="@+id/btn_positive"
            android:layout_width="0dip"
            android:layout_height="44dip"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:gravity="center"
            android:paddingTop="2dip"
            android:text="确定"
            android:textColor="#f73e3e"
            android:textSize="16sp"/>
    </LinearLayout>
</LinearLayout>

7.xml布局简单效果

Paste_Image.png

再来回顾下使用方法:采用的建造者模式

 Dialoger.build(getActivity())
      .setContentText("你好防盗链发交电费")
      .setContentTitle("标题")
      .setNegativeBtn("重新认证", new Dialoger.OnNegativeListener() {
            @Override public void onNegative(Dialog dialog) {
                dialog.dismiss();
                ....
                ....
        } })
      .setPositiveBtn("确认", new Dialoger.OnPositiveListener() {
     @Override public void onPositive(Dialog dialog) {
     dialog.dismiss();
      ....//对应的操作
      ....
     }
     })
    .dialoger.setOnCancelListener(new DialogInterface.OnCancelListener() {
            @Override
            public void onCancel(DialogInterface dialog) {
                   view.getViewActivity().finish();
              }
        }). show();

over~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,837评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,551评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,417评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,448评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,524评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,554评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,569评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,316评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,766评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,077评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,240评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,912评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,560评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,176评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,425评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,114评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,114评论 2 352

推荐阅读更多精彩内容