本文实例为大家分享了kotlin自定义对话框的具体代码,供大家参考,具体内容如下 1.CommonDialog 创建我们自己的对话框,继承于系统的Dialog 实现构造方法 class CommonDialog(context: Context?, themeResId: Int) : Dialog(context, themeResId) {} 2. 在内部创建BUilder类 定义出我们需要的方法和属性 class Builder (privateval context: Context) { private var title: String? = null pri