popwindow巨坑

setWidth(LinearLayout.LayoutParams.MATCH_PARENT);
setHeight(LinearLayout.LayoutParams.WRAP_CONTENT);
setFocusable(false);//设置false后点击外部不消失,设置true后点击外部就消失
setBackgroundDrawable(new PaintDrawable());
setOutsideTouchable(false);//设置点击外部不消失
setContentView(view);
update();

你可能感兴趣的:(popwindow巨坑)