Android自定义弹窗提示效果
作者:Simon66991 时间:2022-05-13 12:00:14
本文实例为大家分享了Android 自定义弹窗提示的具体代码,供大家参考,具体内容如下
Java文件:
private void showSetDeBugDialog() {
AlertDialog.Builder setDeBugDialog = new AlertDialog.Builder(this);
//获取界面
View dialogView = LayoutInflater.from(this).inflate(R.layout.system_admin_psw_alert_dialog, null);
//将界面填充到AlertDiaLog容器并去除边框
setDeBugDialog.setView(dialogView,0,0,0,0);
//初始化控件
TextView but_cancel = dialogView.findViewById(R.id.but_cancel);
TextView but_confirm = dialogView.findViewById(R.id.but_confirm);
//取消点击外部消失弹窗
setDeBugDialog.setCancelable(false);
//创建AlertDiaLog
setDeBugDialog.create();
//AlertDiaLog显示
final AlertDialog customAlert = setDeBugDialog.show();
//设置AlertDiaLog宽高属性
// WindowManager.LayoutParams params = Objects.requireNonNull(customAlert.getWindow()).getAttributes();
// params.width = 200;
// params.height = 200 ;
// customAlert.getWindow().setAttributes(params);
// 移除dialog的decorview背景色
Objects.requireNonNull(customAlert.getWindow()).getDecorView().setBackground(null);
//设置自定义界面的点击事件逻辑
but_cancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
customAlert.dismiss();
}
});
but_confirm.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
customAlert.dismiss();
}
});
}
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/fillet_fill_stroke">
<ImageView
android:layout_width= "38dp"
android:layout_height="38dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:src="@mipmap/wenti"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="20dp"
android:paddingBottom="20dp"
android:textColor="#5C5C5C"
android:textSize="20sp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:text="确定要退出吗?"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#eee"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/but_cancel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:textColor="#999"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:text="取消"/>
<LinearLayout
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="#eee"/>
<TextView
android:id="@+id/but_confirm"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:textColor="#5C5C5C"
android:textStyle="bold"
android:text="确定"/>
</LinearLayout>
</LinearLayout>
资源文件:
背景样式
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--描边设置-->
<stroke android:color="@android:color/darker_gray"
android:width="1px" />
<!--填充设置-->
<solid android:color="@android:color/white"/>
<!--圆角设置-->
<corners android:radius="15dp"/>
</shape>
来源:https://blog.csdn.net/weixin_44177244/article/details/111170188
标签:Android,弹窗提示
0
投稿
猜你喜欢
SpringBoot访问外部文件及默认路由问题
2021-08-12 10:58:01
C#实现利用泛型将DataSet转为Model的方法
2023-09-12 13:32:26
Android自定义控件实现圆形进度CircleProgressBar
2023-04-16 08:24:50
Java实现文件上传到服务器本地并通过url访问的方法步骤
2021-12-01 11:45:20
解决Android studio3.6安装后gradle Download失败(构建不成功)
2021-07-20 15:38:42
Java经典面试题最全汇总208道(二)
2023-11-09 08:13:39
java实现1M图片压缩优化到100kb实现示例
2022-08-08 03:59:43
C#中FormsAuthentication用法实例
2023-06-02 14:33:52
java如何获得redis所有的key-value
2022-03-13 12:22:14
Java Scanner输入两个数组的方法
2022-06-07 08:21:20
mybatis plus中如何编写sql语句
2021-09-21 15:27:55
微信跳一跳辅助Java代码实现
2022-03-31 19:12:03
JDBC使用游标实现分页查询的方法
2021-06-03 19:07:26
详解java中的6种单例写法及优缺点
2021-06-01 17:26:01
基于Android中实现定时器的3种解决方法
2022-02-10 15:03:53
Android仿IOS上拉下拉弹性效果的实例代码
2023-08-26 06:49:18
kotlin Context使用详解
2021-09-12 02:54:29
Java高并发BlockingQueue重要的实现类详解
2021-06-20 12:08:24
Struts2学习笔记(9)-Result配置全局结果集
2022-04-09 11:33:10
Java中输出字符的ASCII值实例
2023-02-27 08:59:11