我爱编程

Android中PopupWindow showAsDropDo

2018-05-28  本文已影响0人  不爱去冒险的少年y

解决办法:

在继承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());

    }

}

上一篇 下一篇

猜你喜欢

热点阅读