dismiss the popup window by back button

前端 未结 6 1289
感情败类
感情败类 2020-12-17 17:38

I want to Dismiss the popup window by clicking outside of the popup window or by the back button, but when click on the back button my application exit\'s, instead of exitin

6条回答
  •  清酒与你
    2020-12-17 18:36

    Replace

    popupWindow.setOutsideTouchable(false);
    

    with this

    popupWindow.setOutsideTouchable(true);
    popupWindow.setFocusable(true);
    

提交回复
热议问题