I tried above code, unfortunately, I can’t get ref...
# android
j
I tried above code, unfortunately, I can’t get reference to
dialog
in my
onClickListener
. Do you have any idea how to solve it?
e
Copy code
val view = layoutInflater.inflate(R.layout.match_stats, null)
val dialog = alert {
   customView = view
}
val closeButton = view.findViewById<ImageButton>(R.id.closeButton)
   closeButton.setOnClickListener { _ -> dialog.dismiss()}
dialog.show()
Just move some of the code outside