//1.把popWindow填充到当前界面
//2.创建一个popWindow
PopupWindow pw = new PopupWindow(view, ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
// 3.设置外部可点击 *** 必须给popWindow设置一个背景
pw.setOutsideTouchable(true);
pw.setBackgroundDrawable(new ColorDrawable(Color.RED));