Close Android popup window with back press

后端 未结 8 2067
春和景丽
春和景丽 2021-01-05 02:42

I have created a android application where I have created a popup screen. But when I am pressing the back button, popup is not getting closed.

I have tried with onB

8条回答
  •  长发绾君心
    2021-01-05 03:08

    Recently I worked with ListPopupWindow (android.support.v7.internal.widget.ListPopupWindow) and back button started to work when I called

    popupWindow.setModal(true);
    

    no matter what I set in setBackgroundDrawable method as other solutions suppose here.

提交回复
热议问题