Android下PopupWindow隐藏及显示(showAtLocation/showAsDropDown)
上一篇对PopupWindow的用法(位置、动画、焦点)做了详细介绍,具体查看Android中PopupWindow的用法(位置、动画、焦点)。下面说说PopupWindow的如何隐藏、显示及显示位置(showAtLocation/showAsDropDown)。
?
1、PopupWindow的隐藏
?
?
//将PopupWindow作为anchor的下拉窗口显示。即在anchor的左下角显示window.showAsDropDown(anchor);//xoff,yoff基于anchor的左下角进行偏移。window.showAsDropDown(anchor, xoff, yoff);
?
如果没有充足的空间显示PopupWindow,那么PopupWindow的左下角将位于anchor的左上角来显示
?