Android AlertDialog圆角背景不生效的问题

一行解决:

Kotlin 复制代码
window?.setBackgroundDrawableResource(android.R.color.transparent)

原文件:

Kotlin 复制代码
/**
 * Created by Xinghai.Zhao
 * 自定义选择弹框
 */
@SuppressLint("InflateParams", "MissingInflatedId")
class CustomDialog(context: Context?) : AlertDialog(context){
    var mCallBack: ClickCallBack? = null
    var mTextViewTitle: TextView? = null
    var mTextViewContent: TextView? = null
    var mEditText:EditText? = null
    var mEditTextMax:TextView? = null
    var mEditLayout: View? = null
    var mTextViewYes: TextView? = null
    var mTextViewNo: TextView? = null
    var mLine: View? = null
    var isEdit:Boolean = false
    constructor(context: Context?, title: String?, content: String?, callBack: ClickCallBack, isEditType:Boolean) : this(context) {
        mCallBack = callBack
        isEdit = isEditType
        mTextViewTitle?.text = title?:""
        mTextViewContent?.text = content?:""
        if (isEdit){
            mEditLayout?.visibility = View.VISIBLE
        }else{
            mEditLayout?.visibility = View.GONE
        }
    }
    init {
        val inflate = LayoutInflater.from(context).inflate(R.layout.dialog_custom, null)
        setView(inflate)
        window?.setBackgroundDrawableResource(android.R.color.transparent)
        //设置点击别的区域不关闭页面
        setCancelable(false)
        mTextViewTitle = inflate.findViewById(R.id.dialog_custom_title)
        mTextViewContent = inflate.findViewById(R.id.dialog_custom_content)
        mEditText = inflate.findViewById(R.id.dialog_custom_edit)
        mEditTextMax = inflate.findViewById(R.id.dialog_custom_edit_max)
        mEditLayout = inflate.findViewById(R.id.dialog_custom_edit_layout)
        mTextViewYes = inflate.findViewById(R.id.dialog_custom_yes)
        mTextViewYes?.setOnClickListener{mCallBack?.onYesClick(this)}
        mTextViewNo = inflate.findViewById(R.id.dialog_custom_no)
        mTextViewNo?.setOnClickListener{dismiss()}
        mLine = inflate.findViewById(R.id.dialog_custom_line)
    }
    interface ClickCallBack {
        fun onYesClick(dialog: CustomDialog)
    }
}

layout:

XML 复制代码
<?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:background="@drawable/bg_set"
    android:orientation="vertical">
    <TextView
        android:id="@+id/dialog_custom_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="20dp"
        android:textColor="@color/black"
        android:textSize="18sp"
        android:textStyle="bold" />
   
    <TextView
        android:id="@+id/dialog_custom_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="30dp"
        android:textColor="@color/black"
        android:textSize="14sp" />
    <LinearLayout
        android:id="@+id/dialog_custom_edit_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingBottom="20dp"
        android:visibility="gone">

        <EditText
            android:id="@+id/dialog_custom_edit"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginStart="10dp"
            android:layout_weight="1"
            android:maxLength="10"
            android:maxLines="1"
            android:padding="10dp"
            android:textColor="@color/black"
            android:textSize="14sp" />

        <TextView
            android:id="@+id/dialog_custom_edit_max"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="10dp"
            android:padding="10dp"
            android:textColor="@color/grey"
            android:textSize="12sp" />


    </LinearLayout>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@color/grey2" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/dialog_custom_no"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:padding="10dp"
            android:text="取消"
            android:textColor="@color/black"
            android:textSize="16sp" />

        <TextView
            android:id="@+id/dialog_custom_line"
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="@color/grey2" />

        <TextView
            android:id="@+id/dialog_custom_yes"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:padding="10dp"
            android:text="确定"
            android:textColor="@color/blue"
            android:textSize="16sp" />


    </LinearLayout>
</LinearLayout>

bg_set.xml:

XML 复制代码
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="14dp" /> <!-- 圆角半径为10dp -->
    <solid android:color="@color/white" /> <!-- 设置黑色背景并且70%不透明度 -->
</shape>
相关推荐
ljl_jiaLiang2 小时前
android10 系统定制:增加应用使用数据埋点,应用使用时长统计
android·系统定制
花花鱼2 小时前
android 删除系统原有的debug.keystore,系统运行的时候,重新生成新的debug.keystore,来完成App的运行。
android
落落落sss3 小时前
sharding-jdbc分库分表
android·java·开发语言·数据库·servlet·oracle
消失的旧时光-19436 小时前
kotlin的密封类
android·开发语言·kotlin
服装学院的IT男7 小时前
【Android 13源码分析】WindowContainer窗口层级-4-Layer树
android
CCTV果冻爽8 小时前
Android 源码集成可卸载 APP
android
码农明明8 小时前
Android源码分析:从源头分析View事件的传递
android·操作系统·源码阅读
秋月霜风9 小时前
mariadb主从配置步骤
android·adb·mariadb
Python私教10 小时前
Python ORM 框架 SQLModel 快速入门教程
android·java·python