Custom Dialog Didnt Show Icon Outside Layout
I have make a custom dialog but it doesn't work as what i expect, been looking through other answer in stack overflow here is my method
val mDialogView =
LayoutInflater.from(mFragment.requireContext()).inflate(
R.layout.dialog_confirm,
null
)
val mBuilder = AlertDialog.Builder(mFragment.requireContext(),R.style.CustomDialog).setView(mDialogView)
val mAlertDialog = mBuilder.show()...