how to set margin in Dialog

后端 未结 6 1358
情歌与酒
情歌与酒 2020-12-16 17:25

I have used Dialog for display ad in my Andorid app.But I have to display this Dialog about 50dp top from buttom so i think we should set Dia

6条回答
  •  青春惊慌失措
    2020-12-16 17:39

    Well, what best worked for me was to wrap my dialog view inside a FrameLayout and add padding, and set onClickListener to "dismiss" dialog. Like this:

    
    
    
     dialog?.window?.setBackgroundDrawable(context?.getDrawable(android.R.color.transparent))
     view.parentFl.setOnClickListener { dismiss() }
    

提交回复
热议问题