最近写了popupwindow,方便于实现在某个控件下弹出框,测试后发现有些手机显示异常
首先看看两个的区别,在7.0手机上弹出的popupwindow导致搜索模块的布局消失
解决方案
if (Build.VERSION.SDK_INT < 24) {
popupWindow.showAsDropDown(rightBtn);
} else {
int[] location = new int[2];
rightBtn.getLocationOnScreen(location);
int y = location[1];
popupWindow.showAtLocation(rightBtn, Gravity.NO_GRAVITY, 0, y + rightBtn.getHeight());
}