标签: android graphics shape region intersect
我想找到一种方法,在android这样的事情(像我使用java.awt.Shape这样的事情):
Shape shape = ...; shape.intersects(left, top, width, height); shape.contains(left, top, width, height);
试图考虑android类:Path,Shape ......但没有找到任何东西。所有这些Android的东西有点困惑。
请问,伙计们帮我找一个解决方案?
答案 0 :(得分:0)
Android拥有Rect类,其中包含检测交集的方法。
这也可能有所帮助:
How to use the Rect.intersect method.