美文网首页
2022-06-05 PopupWindow外部不可点击以及外部

2022-06-05 PopupWindow外部不可点击以及外部

作者: 兣甅 | 来源:发表于2022-06-05 04:00 被阅读0次

    1.外部不可点击,在Activity中重写dispatchTouchEvent,如下

      @Override
      public boolean dispatchTouchEvent(MotionEvent event) {
        //hasShow弹窗调用后为true,PopupWindow.setOnDismissListener里面设为false
        if (hasShow) return false;
        return super.dispatchTouchEvent(event);
      }
    

    2.半透明效果,然后在PopupWindow.setOnDismissListener里面充值为1f即可

            //this是当前的Activity
            WindowManager.LayoutParams lp = this.getWindow().getAttributes();
            lp.alpha = 0.7f;//需要显示的半透明度
            this.getWindow().setAttributes(lp);
            //下面这行是重点,否则在安卓10以后半透明无效
            this.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
    

    相关文章

      网友评论

          本文标题:2022-06-05 PopupWindow外部不可点击以及外部

          本文链接:https://www.haomeiwen.com/subject/saalmrtx.html