美文网首页
PopupWindow兼容android 7.0

PopupWindow兼容android 7.0

作者: 笨笨哒2018 | 来源:发表于2018-08-07 09:52 被阅读0次

    重写showAsDropDown方法

     @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);
        }
    

    相关文章

      网友评论

          本文标题:PopupWindow兼容android 7.0

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