我想在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));
有更好的办法吗?
2条答案
按热度按时间wvyml7n51#
啊哈--找到了答案:
jvlzgdj92#
您可以在Kotlin中使用扩展函数:
或