android+自定义alertdialog,安卓自定义AlertDialog

692237561129

AlertDialog.png

使用方法 example:

DialogUtil.showAlertDialog(getActivity(), R.mipmap.restart, "退出提示", "你确定要退出吗?"),

"确定", "取消", true, new DialogUtil.AlertDialogBtnClickListener() {

@Override

public void clickPositive() {

//positive

}

@Override

public void clickNegative() {

//negative

}

});

工具类主要代码

public class DialogUtil {

private static AlertDialog dialog;

/**

* @param activity Context

* @param iconRes 提示图标

* @param title 提示标题

* @param msg 提示内容

* @param positiveText 确认

* @param negativeText 取消

* @param cancelableTouchOut 点击外部是否隐藏提示框

* @param alertDialogBtnClickListener 点击监听

*/

public static void showAlertDialog(Activity activity, int iconRes, String title, String msg,

String positiveText, String negativeText, boolean

cancelableTouchOut, final AlertDialogBtnClickListener

alertDialogBtnClickListener) {

View view = LayoutInflater.from(activity).inflate(R.layout.custom_dialog_layout, null);

ImageView mIcon = view.findViewById(R.id.icon);

TextView mTitle = view.findViewById(R.id.title);

TextView mMessage = view.findViewById(R.id.message);

Button positiveButton = view.findViewById(R.id.positiveButton);

Button negativeButton = view.findViewById(R.id.negativeButton);

mIcon.setImageResource(iconRes);

mTitle.setText(title);

mMessage.setText(msg);

positiveButton.setText(positiveText);

negativeButton.setText(negativeText);

positiveButton.setOnClickListener(v -> {

alertDialogBtnClickListener.clickPositive();

dialog.dismiss();

});

negativeButton.setOnClickListener(v -> {

alertDialogBtnClickListener.clickNegative();

dialog.dismiss();

});

AlertDialog.Builder builder = new AlertDialog.Builder(activity);

builder.setView(view);

builder.setCancelable(true); //返回键dismiss

//创建对话框

dialog = builder.create();

dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);//去掉圆角背景背后的棱角

dialog.setCanceledOnTouchOutside(cancelableTouchOut); //失去焦点dismiss

dialog.show();

}

public interface AlertDialogBtnClickListener {

void clickPositive();

void clickNegative();

}

}

下面是布局文件 custom_dialog_layout.xml

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="@null"

android:gravity="center"

android:orientation="vertical">

android:layout_width="280dp"

android:layout_height="wrap_content"

android:orientation="vertical"

tools:ignore="UselessParent">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="@drawable/custom_dialog_title"

android:gravity="center"

android:minWidth="210dp"

android:orientation="horizontal"

android:paddingBottom="15dp"

android:paddingTop="15dp">

android:id="@+id/icon"

android:layout_width="20dp"

android:layout_height="20dp"

android:layout_gravity="center_vertical"

android:src="@mipmap/icon"/>

android:id="@+id/title"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_vertical"

android:layout_marginLeft="8dip"

android:layout_marginStart="8dip"

android:text="@string/offlineNotifaction"

android:textColor="@color/colorLightBlack"

android:textSize="16sp"/>

android:id="@+id/content"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="@drawable/custom_dialog_content"

android:gravity="center"

android:minHeight="80dip"

android:minWidth="210dp"

android:orientation="vertical">

android:id="@+id/message"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginLeft="10dip"

android:layout_marginStart="10dip"

android:clickable="true"

android:focusable="true"

android:paddingBottom="10dp"

android:paddingTop="10dp"

android:textSize="16sp"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="@drawable/custom_dialog_button"

android:minWidth="210dp"

android:orientation="horizontal"

android:padding="12dp">

android:id="@+id/positiveButton"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_marginEnd="3dp"

android:layout_marginRight="3dp"

android:layout_weight="1"

android:background="@drawable/custom_dialog_negative"

android:text="@string/sure"

android:textAllCaps="false"

android:textColor="@android:color/white"/>

android:id="@+id/negativeButton"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_marginLeft="3dp"

android:layout_marginStart="3dp"

android:layout_weight="1"

android:background="@drawable/custom_dialog_positive"

android:text="@string/cancel"

android:textAllCaps="false"

android:textColor="@android:color/white"/>

提示框上部分背景 custom_dialog_title

android:shape="rectangle">

android:topLeftRadius="7dp"

android:topRightRadius="7dp"/>

提示框中部分背景 custom_dialog_content

android:shape="rectangle">

android:color="#f5f5f5"/>

android:width=".4dp"

android:color="#848484"/>

提示框下部分背景 custom_dialog_button

android:shape="rectangle">

android:bottomLeftRadius="7dp"

android:bottomRightRadius="7dp"/>

确定按钮样式 custom_dialog_negative

取消按钮样式 custom_dialog_positive

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/564393.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

eclipse跳转到指定行快捷键_用什么快捷键可以跳到下一个一样的?

Ctrl Shift O: 引入imports语句Ctrl Shift T: 打开Open Type查找类文件Ctrl Shift F4: 关闭打开的所有窗口Ctrl Shift F: 整形Ctrl Alt ↓(↑) : 向下(上)复制本行 (搞笑)Ctrl D : 删除本行Ctrl O: Open declarations F3 : Open DeclarationCtrl E : 打开编辑器(切…

android 跟随动画,Android实现View拖拽跟随手指移动效果

今天想实现这个功能,但是网上搜索代码,都是利用setPadding,setMargin 等方法去实现的,这在Android 4.0 以前是没问题的,但是,android 4.0 后系统已经提供了更简单的方法给我们用了,就是setTrans…

mysql datetime 后面带了很多0_面试官:MySQL 表设计要注意什么?

作者 孤独烟来自公众号:孤独烟引言大家应该知道烟哥最近要(tiao 咳咳咳),嗯,不可描述!随手讲其中一部分知识,都是一些烟哥自己平时工作的总结以及经验。大家看完,其实能避开很多坑。而且很多问题&#xff0…

poi 顺序解析word_JavaPOI解析word提取数据到excel

Java POI解析Word提取数据存储在Excel一、了解POIPOI以前有了解,这次需求是解析word读取其中标题,还有内容赛选获取自己想要的内容经过两天的学习,开始熟悉Java这么读取word和解析。本文中运用是读取整个页面模块的range,通过对ra…

android studio viewo,Android Studio 之 ViewModel

ViewModel 是 JetPack 类库中的一个功能,可以保存控件的状态 ,在整个Activity 生命周期中,状态不会失效如屏幕翻转时,状态可保留,不会失效!与 LiveData 配合使用!配合 Room 进行 Sqlite 操作数据…

git安装 perl ubuntu_ubuntu下安装git

最近在做自己的个人博客项目,部署在阿里云主机上,系统为ubuntu 16.04.4。项目开发在自己的Windows电脑上,每次项目进行改动后都需要手动上传文件到服务器上,感觉很是麻烦。所以准备在服务器上安装git并关联github账号,…

android 图片传递,如何使用包在Android活动之间传递图像(位图)?

按照EboMike的建议,我将位图保存在一个名为MyImage在我的应用程序的内部存储中,无法访问我的其他应用程序。这部分的代码如下:public String createImageFromBitmap(Bitmap bitmap) {String fileName "myImage";//no .png or .jpg…

php调用restful接口_分享一个PHP调用RestFul接口的函数

/*** [http 调用接口函数]* Date 2016-07-11* Author GeorgeHao* param string $url [接口地址]* param array $params [数组]* param string $method [GET\POST\DELETE\PUT]* param array $header [HTTP头信息]* param integer $timeout [超时时间]* return [type] [接口返回数…

graphpad如何换柱状图与折线图能否混合一起_excel柱状图加折线图组合怎么做,原来是这样的...

今天小编教大家如Excel柱状图加折线图组合怎么做。操作方法01以下图表格为例,我们就用这个年份、销量和增长率来做个柱状图与折线图的组合形式图表。首先,拖动鼠标,选中销量和增长率两项的所有数据。02选中数据后,点击上面菜单栏中…

ucache灾备云报价_UCACHE灾备云功能

(IDC彭帅)未来互联网、移动互联网、物联网、工业互联网行业将迎来迅猛发展,作为数据安全最后一道防线,灾备技术具有巨大的应用前景。当前,企业的每一个业务系统所关心的最主要问题就是业务如何连续运转的问题,这其中,既…

html下拉框选择后自动刷新,html select 下拉框刷新页面后保留上一次选择的值

常用场景组合条件查询点击查询/刷新页面,包括input输入框\复选框等在内的组件都可以通过前端设置value"{{id}}",后台发送的数据包括对应的字段,从而实现刷新后保留上一次的值,提高用户体验,但是发现select不…

极域电子书包课堂管理系统_朝阳群众说小康 | 从黑板课本到VR互动课堂、电子书包,朝阳的课堂如此有趣!...

教育变迁一支粉笔、一块黑板、一本教材曾经是教师上课沿袭了几十年的“三大法宝”随着时代发展当科技遇上了教育课堂上又会擦出什么样的火花呢?今天,小朝带你走进咱朝阳的校园一探究竟不一young的朝阳教育近日,教育部“基于教学改革、融合信息…

MySQL的优点

MySQL 使用的 SQL 语言是用于访问数据库的最常用的标准化语言。 由于 MySQL 数据库体积小、速度快、总体拥有成本低、开放源代码,其有着广泛的应用,一般中小型网站的开发都选择 MySQL 作为网站数据库。由于其社区版的性能卓越,因此搭配 PHP …

鸿蒙行车记录仪,百度导航新增行车记录仪功能 可消除碰瓷风险

年关将至,市区内各类大型商场、超市、菜市场等地人流密集,此类地点非常容易出现意外状况,市民在驾车出行时千万要提高注意力,警惕碰瓷者倒在你面前。如果事先装载行车记录仪,就能避免一桩“冤案”的发生。日前&#xf…

安装引导黑屏_给电脑安装系统老是装不上,重启就黑屏,原来是这项设置在作怪!...

很多人和我反映说:给电脑安装系统重启电脑后就黑屏无法正确解压系统,这个问题大家有没有遇到呢?遇到这个问题的人可能会认为自己电脑的硬盘坏了,明明已经把需要的Windows操作系统拷贝到硬盘已经成功了,重启电脑准备解压…

MySQL创建数据库

MySQL 中&#xff0c;我们可以使用 CREATE DATABASE 语句创建数据库&#xff0c;语法格式如下&#xff1a; CREATE DATABASE [IF NOT EXISTS] <数据库名> [[DEFAULT] CHARACTER SET <字符集名>] [[DEFAULT] COLLATE <校对规则名>];[ ]中的内容是可选的。语…

如果表不存在则创建_当创建一个文件的时候,操作系统发生了什么

操作文件是我们平时经常有的操作。但是我们可能并不是很了解他们原理&#xff0c;比如为什么删除一个很大的文件&#xff0c;会非常快&#xff1f;创建一个文件的时候&#xff0c;系统发生了什么&#xff1f;为什么删除的文件&#xff0c;还可以恢复&#xff1f;知其然知其所以…

两个html页面之间通讯,面试官:前端跨页面通信,你知道哪些方法?

引言在浏览器中&#xff0c;我们可以同时打开多个Tab页&#xff0c;每个Tab页可以粗略理解为一个“独立”的运行环境&#xff0c;即使是全局对象也不会在多个Tab间共享。然而有些时候&#xff0c;我们希望能在这些“独立”的Tab页面之间同步页面的数据、信息或状态。正如下面这…

MySQL查看或显示数据库

MySQL 中&#xff0c;可使用 SHOW DATABASES 语句来查看或显示当前用户权限范围以内的数据库。查看数据库的语法格式为&#xff1a; SHOW DATABASES [LIKE 数据库名];语法说明如下&#xff1a; LIKE 从句是可选项&#xff0c;用于匹配指定的数据库名称。LIKE 从句可以部分匹配…

默认选中_双击dwg图纸,怎么设置默认天正打开?

文尾左下角阅读原文看视频教程好课推荐&#xff1a;零基础CAD&#xff1a;点我CAD室内&#xff1a;点我 周站长CAD&#xff1a;点我CAD机械&#xff1a;点我 Bim教程&#xff1a;点我CAD建筑&#xff1a;点我CAD三维&#xff1a;点我全屋定制&#xff1a;点我 ps教程&#xff1…