1. 程式人生 > >android獲得控制元件在螢幕中的絕對座標 getLocationInWindow 和 getLocationOnScreen

android獲得控制元件在螢幕中的絕對座標 getLocationInWindow 和 getLocationOnScreen

int[] location = new  int[2] ;
view.getLocationInWindow(location); //獲取在當前視窗內的絕對座標
view.getLocationOnScreen(location);//獲取在整個螢幕內的絕對座標
location [0]--->x座標,location [1]--->y座標

getLocationOnScreen

,計算該檢視在全域性座標系中的x,y值,(注意這個值是要從螢幕頂端算起,也就是索包括了通知欄的高度)//獲取在當前螢幕內的絕對座標

getLocationInWindow ,計算該檢視在它所在的widnow的座標x,y值,//獲取在整個視窗內的絕對座標

getLeft

 , getTopgetBottom,getRight, 這一組是獲取相對在它父親裡的座標