Calling android dialog without it fading the background

前端 未结 4 565
花落未央
花落未央 2020-11-29 02:08

I have this nice dialog view I set my UserInputDialog class to:

    

        
4条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-29 02:57

    You can also remove the dim effect by code with the following:

    dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
    

提交回复
热议问题