public final class Rect extends Object implements Parcelable
public class RectF extends Object implements Parcelable
Rect和RectF都是用于使用4个点(bottom, left, right, top)来记录一个矩形区域.
所不同的是,Rect记录的坐标是int类型的,而RectF记录的坐标是float类型的.
同时提供了一些方法对二者进行转换和一些坐标处理的方法.
更多参考见API:
http://developer.android.com/reference/android/graphics/Rect.html
http://developer.android.com/reference/android/graphics/RectF.html