2016-01-26 PopupWindow遇到的坑 1、PopUpwindow出现黑色边框 解决办法1setBackgroundDrawable(null); 2、popup点击外部区域不消失 解决办法12setOutsideTouchable(true);setBackgroundDrawable(new BitmapDrawable()); 绝对不能使用setBackgroundDrawable(null),坑了好久。。原因待考察,需要看下PopUpwindow源码。 还没找到原因。。。