关于PopupWindow wrap_content 后获取高度宽度
PopupWindow在创建时宽度高度设置为match_parent或者wrap_content时,通过getWidth、getHeight或者getContentView.getMeasuredWidth、getContentView.getMeasuredHeight 不能获取到真实的高度!正确的方法获取高度的方法是创建之后调用measure方法对View进行测量,然后获取宽度与高度!