在Android中从RectF转换为Rect的最佳方法是什么?

时间:2013-05-08 19:57:01

标签: android graphics rectangles

我想在Android中从RectF转换为Rect。目前我有:

RectF rectF = new RectF();
rectF.set( ... some values ... );

...

Rect rect = new Rect((int)rectF.left,
                     (int)rectF.top,
                     (int)rectF.right,
                     (int)rectF.bottom));

有更好的方法吗?

1 个答案:

答案 0 :(得分:37)

啊哈哈 - 找到了答案:

rectF.round(rect);

-- or --

rectF.roundOut(rect);