Popwindow在7.0系统上显示全屏

来源:互联网 发布:中航工业301所待遇知乎 编辑:程序博客网 时间:2024/06/06 11:43

重写popwindow方法

    @Override    public void showAsDropDown(View anchor) {        if(Build.VERSION.SDK_INT == 24) {            Rect rect = new Rect();            anchor.getGlobalVisibleRect(rect);            int h = anchor.getResources().getDisplayMetrics().heightPixels - rect.bottom;            setHeight(h);        }        super.showAsDropDown(anchor);    }
阅读全文
0 0
原创粉丝点击