Android日常學習:如何高效 & 正確地獲取View的座標位置?

yilian發表於2019-11-13

Android程式設計師日常學習:如何高效 & 正確地獲取View的座標位置?

同步滾動:

前言

獲取 View 座標在 Android 開發中非常常見。今天將詳細給大家講解 獲取 View 座標常用6種方式:

  1. getLeft()、getTop()、getRight()、getBottom()
  2. getX()、getY()、getRawX()、getRawY()
  3. getLocationOnScreen()
  4. getLocationInWindow()
  5. getGlobalVisibleRect()
  6. getLocalVisibleRect()

方式1:getLeft()、getTop()、getRight()、getBottom()

1. 應用場景

獲得 View 相對 父View 的座標

2. 使用

view.getLeft();view.getTop();view.getRight();view.getBottom();

3. 具體描述

View的位置由4個頂點決定的(如下A、B、C、D)

image
image

View的頂點

4個頂點的位置描述分別由4個值決定:(請記住:View的位置是相對於父控制元件而言的)

image
image

方式2:getX()、getY()、getRawX()、getRawY()

1. 應用場景

獲得點選事件處 相對點選控制元件 & 螢幕的座標

2. 使用

該方式是透過motionEvent獲取的

motionEvent event;event.getX(); 
event.getY();event.getRawX(); 
event.getRawY();

3. 具體介紹

image
image

方式3:getLocationInWindow()

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. 示意圖

image
image

方式4:getLocationOnScreen()

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. 示意圖

image
image

方式5:getGlobalVisibleRect()

1. 應用場景

View可見部分 相對於 螢幕的座標。

2. 具體使用

Rect globalRect = new Rect();
view.getGlobalVisibleRect(globalRect);
globalRect.getLeft();
globalRect.getRight();
globalRect.getTop();
globalRect.getBottom();

3. 示意圖

image
image

方式6:getLocalVisibleRect()

1. 應用場景

View可見部分 相對於 自身View位置左上角的座標。

2. 具體使用

Rect localRect = new Rect();
view.getLocalVisibleRect(localRect);
localRect.getLeft();
localRect.getRight();
localRect.getTop();
localRect.getBottom();

3. 示意圖

image
image

總結

本文對Android獲取View座標位置的方式進行了全面講解,總結如下:

image



#更多Android學習內容關注我的部落格


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952849/viewspace-2663883/,如需轉載,請註明出處,否則將追究法律責任。

相關文章