摘要:
1:实例化PopupWindow的对象,三个参数分别对应:填充的布局文件、在当前Activity上所占的宽、高
PopupWindow popupWindow= new PopupWindow(contentView, LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
2:完成第一步所需要的布局文件,并实例出来
View contentView = mLayoutInflater.inflate(R.layout.pop, null)
3:设置PopupWindow 所必备的两个属性
//popupWindow的背景
(1)popupWindow.setBackgroundDrawable(......);
//popupWindow要显示的位置
(2)popupWindow.showAtLocation(View parent, int gravity, int x, int y) 阅读全文