I am using a custom dialog in my app:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState ?: Bundle())
val view = LayoutInflater.from(context).inflate(R.layout.dialog_list, null)
setContentView(R.layout.dialog_list)
setCanceledOnTouchOutside(true)
setCancelable(true)
setUpRecyclerView(view)
}
I am passing the layout name in setContentView()
function.
But when I click on the dialog it displays nothing.
However if I pass the view
object inside setContentView
it displays everything.
Why wasn't it displaying when I typed setContentView(R.layout.dialog_list)
Let's start from the very beginning. The best approach to show custom dialogs I think it's to extend DialogFragment and then inflate your layout in
onCreateView
(like when u creating Fragments). So your coe should look like this:After that u simply can create instance of your dialog and show it