PopupWindow在三星手机设置Focusable为true
mPopupWindow.setFocusable(true);
点击以外区域不会dismiss,在华为手机上正常。
需要设置
mPopupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
mPopupWindow.setOutsideTouchable(true);
估计是因为三星手机源码修改了PopupWindow的默认行为导致的
网友评论