您好,登錄后才能下訂單哦!
獲取 View 坐標在 Android 開發中非常常見。今天將詳細給大家講解 獲取 View 坐標常用6種方式:
1. 應用場景
獲得 View 相對 父View 的坐標
2. 使用
view.getLeft();view.getTop();view.getRight();view.getBottom();
3. 具體描述
View的位置由4個頂點決定的(如下A、B、C、D)
View的頂點
4個頂點的位置描述分別由4個值決定:(請記住:View的位置是相對于父控件而言的)
1. 應用場景
獲得點擊事件處 相對點擊控件 & 屏幕的坐標
2. 使用
該方式是通過motionEvent獲取的
motionEvent event;event.getX(); event.getY();event.getRawX(); event.getRawY();
3. 具體介紹
1. 應用場景
獲取控件 相對 窗口Window 的位置
2. 具體使用
int[] location = new int[2]; view.getLocationInWindow(location);int x = location[0]; // view距離window 左邊的距離(即x軸方向)int y = location[1]; // view距離window 頂邊的距離(即y軸方向)// 注:要在onWindowFocusChanged()里獲取,即等window窗口發生變化后
3. 示意圖
1. 應用場景
獲得 View 相對 屏幕 的絕對坐標
2. 使用
int[] location = new int[2]; view.getLocationOnScreen(location);int x = location[0]; // view距離 屏幕左邊的距離(即x軸方向)int y = location[1]; // view距離 屏幕頂邊的距離(即y軸方向)// 注:要在view.post(Runable)里獲取,即等布局變化后
3. 示意圖
1. 應用場景
View可見部分 相對于 屏幕的坐標。
2. 具體使用
Rect globalRect = new Rect(); view.getGlobalVisibleRect(globalRect); globalRect.getLeft(); globalRect.getRight(); globalRect.getTop(); globalRect.getBottom();
3. 示意圖
1. 應用場景
View可見部分 相對于 自身View位置左上角的坐標。
2. 具體使用
Rect localRect = new Rect(); view.getLocalVisibleRect(localRect); localRect.getLeft(); localRect.getRight(); localRect.getTop(); localRect.getBottom();
3. 示意圖
本文對Android獲取View坐標位置的方式進行了全面講解,總結如下:
#更多Android學習內容關注我的博客
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。