PopupWindow点击边框以外消失怎么实现
展开全部
public static PopupWindow popWindow(View popview, int Width, int height,
int style) {
// 自适配长、框设置
popupWindowBottom = new PopupWindow(popview, Width,// 后两个参数是width和height
height);
popupWindowBottom.setOutsideTouchable(true);
popupWindowBottom.setAnimationStyle(style);
ColorDrawable dw = new ColorDrawable(Color.argb(0, 0, 0, 0));
ColorDrawable dwwhite = new ColorDrawable(Color.WHITE);
// 设置SelectPicPopupWindow弹出窗体的背景
popupWindowBottom.setBackgroundDrawable(dwwhite);
popupWindowBottom.update();
popupWindowBottom.setTouchable(true);
popupWindowBottom.setFocusable(true);
if (!popupWindowBottom.isShowing()) {
popupWindowBottom.showAsDropDown(popview, 0, 0);
}
return popupWindowBottom;
}
int style) {
// 自适配长、框设置
popupWindowBottom = new PopupWindow(popview, Width,// 后两个参数是width和height
height);
popupWindowBottom.setOutsideTouchable(true);
popupWindowBottom.setAnimationStyle(style);
ColorDrawable dw = new ColorDrawable(Color.argb(0, 0, 0, 0));
ColorDrawable dwwhite = new ColorDrawable(Color.WHITE);
// 设置SelectPicPopupWindow弹出窗体的背景
popupWindowBottom.setBackgroundDrawable(dwwhite);
popupWindowBottom.update();
popupWindowBottom.setTouchable(true);
popupWindowBottom.setFocusable(true);
if (!popupWindowBottom.isShowing()) {
popupWindowBottom.showAsDropDown(popview, 0, 0);
}
return popupWindowBottom;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询