美文网首页我爱编程
Android中PopupWindow showAsDropDo

Android中PopupWindow showAsDropDo

作者: 不爱去冒险的少年y | 来源:发表于2018-05-28 17:23 被阅读0次

解决办法:

在继承PopupWindow后 ,重写showAsDropDown()方法,我遇到的问题是 在打开软键盘后动态关闭键盘显示位置出现问题
原因:在android 7.0后PopupWindow显示位置存在绘制错误。

复制代码进行粘贴就可以。

@Override

public void showAsDropDown(View anchor) {

if (Build.VERSION.SDK_INT <24) {

super.showAsDropDown(anchor);

    }else {

int[] location =new int[2];

        anchor.getLocationOnScreen(location);

        int x = location[0];

        int y = location[1];

        super.showAtLocation(anchor, Gravity.NO_GRAVITY, 0, y + anchor.getHeight());

    }

}

相关文章

网友评论

    本文标题:Android中PopupWindow showAsDropDo

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