当Android开发处理错误信息时,经常会以Dialog的形式显示错误信息,但是每次都new一个Dialog,很麻烦,也增加程序的开销,所以今天就分享一种自定义单例AlertDialog
public class AlertDialog {
private static AlertDialog alertDialog = null;
private Context context;
private Dialog dialog;
private LinearLayout lLayout_bg;
private TextView txt_title;
private TextView txt_msg;
private Button btn_neg;
private Button btn_pos;
private ImageView img_line;
private Display display;
private boolean showTitle = false;
private boolean showMsg = false;
private boolean showPosBtn = false;
private boolean showNegBtn = false;
public static AlertDialog getInstance(Context context){
if (alertDialog==null){
synchronized (AlertDialog.class) {
if (alertDialog == null) {
alertDialog = new AlertDialog(context).builder();
}
}
}
return alertDialog;
}
public AlertDialog(Context context) {
this.context = context;
WindowManager windowManager = (WindowManager) context
.getSystemService(Context.WINDOW_SERVICE);
display = windowManager.getDefaultDisplay();
}
public AlertDialog builder() {
// 获取Dialog布局
View view = LayoutInflater.from(context).inflate(R.layout.view_alertdialog, null);
// 获取自定义Dialog布局中的控件
lLayout_bg = (LinearLayout) view.findViewById(R.id.lLayout_bg);
txt_title = (TextView) view.findViewById(R.id.txt_title);
txt_title.setVisibility(View.GONE);
txt_msg = (TextView) view.findViewById(R.id.txt_msg);
txt_msg.setVisibility(View.GONE);
btn_neg = (Button) view.findViewById(R.id.btn_neg);
btn_neg.setVisibility(View.GONE);
btn_pos = (Button) view.findViewById(R.id.btn_pos);
btn_pos.setVisibility(View.GONE);
img_line = (ImageView) view.findViewById(R.id.img_line);
img_line.setVisibility(View.GONE);
// 定义Dialog布局和参数
dialog = new Dialog(context, R.style.AlertDialogStyle);
dialog.setContentView(view);
// 调整dialog背景大小
lLayout_bg.setLayoutParams(new FrameLayout.LayoutParams((int) (display
.getWidth() * 0.85), LayoutParams.WRAP_CONTENT));
return this;
}
public AlertDialog setTitle(String title) {
showTitle = true;
if ("".equals(title)) {
txt_title.setText("标题");
} else {
txt_title.setText(title);
}
return this;
}
public AlertDialog setMsg(String msg) {
showMsg = true;
if ("".equals(msg)) {
txt_msg.setText("内容");
} else {
txt_msg.setText(msg);
}
return this;
}
public AlertDialog setMsg(int rId) {
showMsg = true;
txt_msg.setText(rId);
return this;
}
public AlertDialog setCancelable(boolean cancel) {
dialog.setCancelable(cancel);
return this;
}
public AlertDialog setPositiveButton(String text,
final OnClickListener listener) {
showPosBtn = true;
if ("".equals(text)) {
btn_pos.setText("确定");
} else {
btn_pos.setText(text);
}
btn_pos.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if(listener!=null) {
listener.onClick(v);
}
dialog.dismiss();
}
});
return this;
}
public AlertDialog setNegativeButton(String text,
final OnClickListener listener) {
showNegBtn = true;
if ("".equals(text)) {
btn_neg.setText("取消");
} else {
btn_neg.setText(text);
}
btn_neg.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if(listener!=null) {
listener.onClick(v);
}
dialog.dismiss();
}
});
return this;
}
private void setLayout() {
if (!showTitle && !showMsg) {
txt_title.setText("");
txt_title.setVisibility(View.VISIBLE);
}
if (showTitle) {
txt_title.setVisibility(View.VISIBLE);
}
if (showMsg) {
txt_msg.setVisibility(View.VISIBLE);
}
if (!showPosBtn && !showNegBtn) {
btn_pos.setText("确定");
btn_pos.setVisibility(View.VISIBLE);
btn_pos.setBackgroundResource(R.drawable.alertdialog_single_selector);
btn_pos.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
}
if (showPosBtn && showNegBtn) {
btn_pos.setVisibility(View.VISIBLE);
btn_pos.setBackgroundResource(R.drawable.alertdialog_right_selector);
btn_neg.setVisibility(View.VISIBLE);
btn_neg.setBackgroundResource(R.drawable.alertdialog_left_selector);
img_line.setVisibility(View.VISIBLE);
}
if (showPosBtn && !showNegBtn) {
btn_pos.setVisibility(View.VISIBLE);
btn_pos.setBackgroundResource(R.drawable.alertdialog_single_selector);
}
if (!showPosBtn && showNegBtn) {
btn_neg.setVisibility(View.VISIBLE);
btn_neg.setBackgroundResource(R.drawable.alertdialog_single_selector);
}
}
public void show() {
setLayout();
dialog.show();
}
}
布局文件view_alertdialog.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lLayout_bg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/alert_bg"
android:orientation="vertical">
<TextView
android:id="@+id/txt_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:gravity="center"
android:text="提示"
android:textColor="@color/black"
android:textSize="18dp" />
<TextView
android:id="@+id/txt_msg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:gravity="center"
android:text="您确定要退出吗?"
android:textColor="@color/black"
android:textSize="16dp" />
<ImageView
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_marginTop="10dp"
android:background="@color/alertdialog_line" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/btn_neg"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:layout_weight="1"
android:background="@drawable/alertdialog_left_selector"
android:gravity="center"
android:text="确定"
android:textColor="@color/bigtextcolor"
android:textSize="16sp" />
<ImageView
android:id="@+id/img_line"
android:layout_width="0.5dp"
android:layout_height="43dp"
android:background="@color/alertdialog_line" />
<Button
android:id="@+id/btn_pos"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:layout_weight="1"
android:background="@drawable/alertdialog_right_selector"
android:gravity="center"
android:text="取消"
android:textColor="@color/themecolor"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
效果显示
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
# Android
# 单例
# AlertDialog
# Android AlertDialog的几种用法详解
# Android中AlertDialog四种对话框的最科学编写用法(实例代码)
# Android去除AlertDialog的按钮栏的分隔线
# Android编程自定义AlertDialog样式的方法详解
# Android使用AlertDialog创建对话框
# Android开发实现AlertDialog中View的控件设置监听功能分析
# Android 自定义AlertDialog对话框样式
# Android AlertDialog多种创建方式案例详解
# 自定义
# 错误信息
# 每次都
# 会以
# 大家多多
# 很麻烦
# View
相关文章:
如何在阿里云通过域名搭建网站?
如何通过多用户协作模板快速搭建高效企业网站?
广州网站制作的公司,现在专门做网站的公司有没有哪几家是比较好的,性价比高,模板也多的?
,柠檬视频怎样兑换vip?
,网站推广常用方法?
如何在阿里云虚拟服务器快速搭建网站?
高防服务器如何保障网站安全无虞?
c# await 一个已经完成的Task会发生什么
活动邀请函制作网站有哪些,活动邀请函文案?
如何用wdcp快速搭建高效网站?
如何选择CMS系统实现快速建站与SEO优化?
已有域名和空间,如何快速搭建网站?
实例解析Array和String方法
制作农业网站的软件,比较好的农业网站推荐一下?
,想在网上投简历,哪几个网站比较好?
西安市网站制作公司,哪个相亲网站比较好?西安比较好的相亲网站?
深圳网站制作的公司有哪些,dido官方网站?
javascript中对象的定义、使用以及对象和原型链操作小结
定制建站模板如何实现SEO优化与智能系统配置?18字教程
动图在线制作网站有哪些,滑动动图图集怎么做?
北京网站制作费用多少,建立一个公司网站的费用.有哪些部分,分别要多少钱?
如何通过.red域名打造高辨识度品牌网站?
图片制作网站免费软件,有没有免费的网站或软件可以将图片批量转为A4大小的pdf?
如何通过网站建站时间优化SEO与用户体验?
建站主机类型有哪些?如何正确选型
智能起名网站制作软件有哪些,制作logo的软件?
微信小程序制作网站有哪些,微信小程序需要做网站吗?
如何通过二级域名建站提升品牌影响力?
如何确保西部建站助手FTP传输的安全性?
上海制作企业网站有哪些,上海有哪些网站可以让企业免费发布招聘信息?
定制建站如何定义?其核心优势是什么?
婚礼视频制作网站,学习*后期制作的网站有哪些?
如何选择可靠的免备案建站服务器?
制作网站软件推荐手机版,如何制作属于自己的手机网站app应用?
在线制作视频网站免费,都有哪些好的动漫网站?
洛阳网站制作公司有哪些,洛阳的招聘网站都有哪些?
定制建站平台哪家好?企业官网搭建与快速建站方案推荐
如何通过商城免费建站系统源码自定义网站主题?
昆明网站制作哪家好,昆明公租房申请网上登录入口?
建站主机选虚拟主机还是云服务器更好?
c# 在高并发下使用反射发射(Reflection.Emit)的性能
专业型网站制作公司有哪些,我设计专业的,谁给推荐几个设计师兼职类的网站?
高端建站如何打造兼具美学与转化的品牌官网?
网站规划与制作是什么,电子商务网站系统规划的内容及步骤是什么?
如何用搬瓦工VPS快速搭建个人网站?
如何基于PHP生成高效IDC网络公司建站源码?
如何用VPS主机快速搭建个人网站?
高防服务器:AI智能防御DDoS攻击与数据安全保障
javascript中的try catch异常捕获机制用法分析
手机钓鱼网站怎么制作视频,怎样拦截钓鱼网站。怎么办?
*请认真填写需求信息,我们会在24小时内与您取得联系。