Android自定义弹窗提示效果
更新时间:2021年09月12日 10:36:43 作者:Simon66991
这篇文章主要为大家详细介绍了Android自定义弹窗提示效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了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>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
相关文章
Android getBackground().setAlpha遇到问题解决办法
这篇文章主要介绍了Android getBackground().setAlpha遇到问题解决办法的相关资料用,getBackground().setAlpha,导致其他布局背景透明度都改变的问题,需要的朋友可以参考下2017-03-03ListView的Adapter使用(绑定数据) 之 自定义每一项的布局去绑定数据
之前写的绑定数据是只是简单的绑定了字符串,这次我们将一次绑定多条数据并且尝试用自定义的布局。在这篇文章中首先讲解的是用Hashmap 去绑定数据,第二个例子,讲解自定义布局然后绑定数据2013-06-06Android studio 出现错误Run with --stacktrace option to get the s
这篇文章主要介绍了 Android studio 出现错误Run with --stacktrace option to get the stack trace. Run with --info or --debu的相关资料,需要的朋友可以参考下2016-11-11Android检测手机中存储卡及剩余空间大小的方法(基于Environment,StatFs及DecimalFormat
这篇文章主要介绍了Android检测手机中存储卡及剩余空间大小的方法,基于Environment,StatFs及DecimalFormat实现该功能,具有一定参考借鉴价值,需要的朋友可以参考下2016-01-01
最新评论