当我们需要在AlertDialog 里弹Popwindow的时候,不设置一些属性的话,弹出的popwindow只能显示AlertDialog 的高度,比如
这时候如果加个属性:
popupWindow.setClippingEnabled(false);
就可以全屏显示popwindow了
如果想垂直居中的话,可以
int measuredHeight = popupWindow.getContentView().getMeasuredHeight(); popupWindow.setClippingEnabled(false); popupWindow.showAsDropDown(v,0,-measuredHeight/2);