View的getLeft, getRight, getTop, getBottom方法得到的分别是相对于其父组件原点坐标不同方向的距离

网上找了张图说明:

View的getLeft, getRight, getTop, getBottom-LMLPHP

其中right和left的计算方法如下:

right = left + width;

bottom = top + height;

05-11 13:19