创建一个没啥用处的Drawable

一句话证明不是标题党:为了让PopupWindow能够点击外面区域消失,必须给PopupWindow设置一个background,那么如下设置一个Drawable,能够更加省时省力风险小。



Drawable drawable = new BitmapDrawable(Bitmap.createBitmap(1,1, Config.ARGB_4444));
drawable.setAlpha(0);

好了,就这么简单

你可能感兴趣的:(android)