PopupWindow如何在外部点击消失和返回键

添加如下代码

  mPopupWindow.setBackgroundDrawable(new PaintDrawable());
        //设置点击窗口外边窗口消失
        mPopupWindow.setOutsideTouchable(false);
        // 设置此参数获得焦点,否则无法点击
        mPopupWindow.setFocusable(true);

你可能感兴趣的:(PopupWindow如何在外部点击消失和返回键)