PopupWindow使用和遮挡虚拟按键处理

PopupWindow顾名思义,就是一个弹出窗口。不过特性倒是挺好玩的:

以弹出窗口的形式展示,可以替代系统的dialog。
可以在任意位置出现,并且会浮动在当前窗口的顶部(获取焦点)。
可以用来装载任意的view。
通过设置背景颜色0xaa000000可以实现半透明效果
关于点击消失:

如果需要点击外部消失,只需设置背景,foucs,outSideTouchable。

this.setBackgroundDrawable(new ColorDrawable(0xaa000000));
this.setFocusable(true);
this.setOutsideTouchable(true);

如果需要点击自身(非按钮控件)消失,在自身设置onclick就好。

mWindow.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
        GetExpressAlert.this.dismiss();
    }
});

因为某些机型是虚拟按键的,所以要加上以下设置防止挡住按键.

this.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

整个类也特别简单:

private void initWindow(Context ctx) {
        View view = View.inflate(ctx, R.layout.view_popup_share, null);
        setContentView(view);
        setWidth(LayoutParams.MATCH_PARENT);
        setHeight(LayoutParams.MATCH_PARENT);
        setFocusable(true);
        setAnimationStyle(R.style.dialog_style);
        setOutsideTouchable(true);
        setBackgroundDrawable(new BitmapDrawable());
        //因为某些机型是虚拟按键的,所以要加上以下设置防止挡住按键.
        setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
        view.setOnTouchListener(new OnTouchListener() {

            public boolean onTouch(View v, MotionEvent event) {
                dismiss();
                return true;
            }
        });
    }

你可能感兴趣的:(PopupWindow使用和遮挡虚拟按键处理)