如何让PopupWindow显示在Dialog之上,我说的之上是指上层
1个回答
展开全部
这个问题我已经解决了,解决方法如下:
1、实例化PopupWindow时,设置其width为屏幕宽度;
2、获取PopupWindow的高度:
popup.getContentView().measure(0, 0);
int height = popup.getContentView().getMeasuredHeight();
3、调用showAtLocation方法时,第一个参数传Dialog上的View,比如edit,调用方法如下:
showAtLocation(edit,Gravity.BOTTOM,0,-height);
这样弹出PopupWindow就会在屏幕下方,并且悬浮在Dialog之上而不会被Dialog遮挡。
1、实例化PopupWindow时,设置其width为屏幕宽度;
2、获取PopupWindow的高度:
popup.getContentView().measure(0, 0);
int height = popup.getContentView().getMeasuredHeight();
3、调用showAtLocation方法时,第一个参数传Dialog上的View,比如edit,调用方法如下:
showAtLocation(edit,Gravity.BOTTOM,0,-height);
这样弹出PopupWindow就会在屏幕下方,并且悬浮在Dialog之上而不会被Dialog遮挡。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询