You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (Build.VERSION.SDK_INT != 24) {
mPopupWindow.showAsDropDown(v);
} else {//Android 7.0 显示位置出现问题 兼容7.0
int[] location = new int[2];
v.getLocationOnScreen(location);
int x = location[0];
int y = location[1];
mPopupWindow.showAtLocation(v, Gravity.NO_GRAVITY, 0, y + v.getHeight());
}
The text was updated successfully, but these errors were encountered:
if (Build.VERSION.SDK_INT != 24) {
mPopupWindow.showAsDropDown(v);
} else {//Android 7.0 显示位置出现问题 兼容7.0
int[] location = new int[2];
v.getLocationOnScreen(location);
int x = location[0];
int y = location[1];
mPopupWindow.showAtLocation(v, Gravity.NO_GRAVITY, 0, y + v.getHeight());
}
The text was updated successfully, but these errors were encountered: