我在自定义对话框布局中实现视图绑定时遇到了问题。有可能吗?
private fun showCustomDialog(title: String) {
val dialog = Dialog(activity)
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE)
dialog.setCancelable(false)
dialog.setContentView(R.layout.custom_layout)
val body = dialog.findViewById(R.id.body) as TextView
body.text = title
val noBtn = dialog.findViewById(R.id.noBtn) as TextView
yesBtn.setOnClickListener {
dialog.dismiss()
}
val yesBtn = dialog.findViewById(R.id.yesBtn) as Button
noBtn.setOnClickListener { dialog.dismiss() }
dialog.show()
}
5条答案
按热度按时间cbeh67ev1#
这是可能的。
其中CustomDialogBinding是自定义布局的视图绑定文件的名称
Kotlin
ccgok5k52#
验证码:
abithluo3#
范例:
pepwfjgg4#
与第一个答案类似,包括一些额外的行。假设您的绑定是
DialogReviewBinding
。它被一个
activity?.let { activity -> }
块包围着vfhzx4xs5#
验证码: