Android AlertDialog 里弹Popwindow数据显示不全问题

当我们需要在AlertDialog 里弹Popwindow的时候,不设置一些属性的话,弹出的popwindow只能显示AlertDialog 的高度,比如


这时候如果加个属性:

popupWindow.setClippingEnabled(false);
 
  
就可以全屏显示popwindow了
 
  
 
  
 
  
 
  

如果想垂直居中的话,可以

int measuredHeight = popupWindow.getContentView().getMeasuredHeight();
popupWindow.setClippingEnabled(false);
popupWindow.showAsDropDown(v,0,-measuredHeight/2);
Android AlertDialog 里弹Popwindow数据显示不全问题_第1张图片

你可能感兴趣的:(popwindow,alertdialog)