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

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

如果在Activity的OnCreate()事件輸出那些引數,是全為0,要等UI控制元件都載入完了才能獲取到這些。

相關文章