什么是从RectF转换为Android的一个矩形的最好方法?(What is the best wa

2019-09-02 07:07发布

我想从一个RectF转换为Android的一个矩形。 目前,我有:

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

...

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

有没有更好的办法?

Answer 1:

啊哈 - 找到了答案:

rectF.round(rect);

-- or --

rectF.roundOut(rect);


文章来源: What is the best way to convert from a RectF to a Rect in Android?