1. 程式人生 > >Android graphics學習筆記(2)

Android graphics學習筆記(2)

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: