码迷,mamicode.com
首页 > Windows程序 > 详细

PopupWindow随记

时间:2015-02-11 18:45:44      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

1、PopupWindow的显示及位置设置


window.showAtLocation(parent, Gravity.RIGHT | Gravity.BOTTOM10,10);
第一个参数指定PopupWindow的anchor(锚点)view,即依附在哪个view上。
第二个参数指定起始点为parent的右下角,第三个参数设置以parent的右下角为原点,向左、上各偏移10像素。
//将PopupWindow作为anchor的下拉窗口显示。即在anchor的左下角显示
window.showAsDropDown(anchor);
//xoff,yoff基于anchor的左下角进行偏移。
window.showAsDropDown(anchor, xoff, yoff);

补充
anchor.getLocationOnScreen(location);
Rect anchorRect = new Rect(location[0], location[1], 
       location[0] + anchor.getWidth(), location[1] + anchor.getHeight());
Rect是矩形区域,四个分别为左上右下的坐标。

PopupWindow随记

标签:

原文地址:http://blog.csdn.net/u012306714/article/details/43735255

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!