DialogFragment not appearing
问题 For some reason, a DialogFragment that I've just created won't appear whenever I try to launch it from a click event. Why does the dialog not have a view, when my view has been clearly set builder.setView(rootView) ? Fragment does not have a view click event to launch DialogFragment holder.myButton.setOnClickListener { val dialog = MyDialog() val manager = (holder.itemView.context as FragmentActivity).supportFragmentManager dialog.show(manager, "example") } DialogFragment class MyDialog :