Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想找到一种方法如何在android中做这样的事情(比如我使用java.awt.Shape做的事情):
Shape shape = ...; shape.intersects(left, top, width, height); shape.contains(left, top, width, height);
试图考虑 android 类:Path、Shape... 但没有找到任何东西。对所有这些 android 的东西有点困惑。
请问各位大神能帮我解决一下吗?
Android 具有Rect类,该类具有检测交叉点的方法。
这也可能有帮助:
如何使用 Rect.intersect 方法。