I want to find a way how to do in android such thing(things like I do using java.awt.Shape):
Shape shape = ...;
shape.intersects(left, top, width, height);
shape.contains(left, top, width, height);
Tried to consider android classes: Path, Shape... but didn't find anything. A little bit confused by all this android stuff.
Could you please, guys help me to find a solution?