这与这个问题有关: Android Nougat PopupWindow showAsDropDown(...) Gravity not working
但是,当我应用此修复程序时:
if (android.os.Build.VERSION.SDK_INT >=24) {
int[] a = new int[2];
anchorView.getLocationInWindow(a);
popUp.showAtLocation(((Activity) mContext).getWindow().getDecorView(), Gravity.NO_GRAVITY, 0 , a[1]+anchorView.getHeight());
} else{
popUp.showAsDropDown(anchorView);
}
它不适用于 Android Nougat 7.1.1。特别是在 Google Pixel 和 Nexus 6p 设备上。
有没有人解决这个问题?请分享。 https://code.google.com/p/android/issues/detail?id=231487