码迷,mamicode.com
首页 > 其他好文 > 详细

控件在屏幕上的据对坐标

时间:2014-09-01 15:29:23      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:http   color   io   ar   div   html   sp   on   c   

控件在屏幕上的绝对坐标获取方法:以屏幕左上角为坐标原点
int[] location = new int[2];
view.getLocationInWindow(location );



getLocationOnScreen的源码:
 public void getLocationOnScreen(int[] location) {
        getLocationInWindow(location);
        final AttachInfo info = mAttachInfo;
        if (info != null) {
            location[0] += info.mWindowLeft;
            location[1] += info.mWindowTop;
        }
    }  




控件在屏幕上的据对坐标

标签:http   color   io   ar   div   html   sp   on   c   

原文地址:http://www.cnblogs.com/flyme2012/p/3949199.html

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