首页 > 代码库 > View的getLeft, getRight, getTop, getBottom

View的getLeft, getRight, getTop, getBottom

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

网上找了张图说明:

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

    right = left + width;

    bottom = top + height;