Tap outside Android dialog to dismiss it?

前端 未结 12 1381
梦如初夏
梦如初夏 2020-12-07 18:44

I was wondering if it\'s possible to somehow tap outside a popup dialog (or an Activity with a dialog theme), and dismiss it by just tapping outside of it?

I made a

12条回答
  •  再見小時候
    2020-12-07 19:37

    LayoutParams lp=dialogp.getWindow().getAttributes(); 
    lp.flags=LayoutParams.FLAG_LAYOUT_NO_LIMITS;
    

    I added this and it works flawlessly on 3.0 up, but should work on all.

提交回复
热议问题