Android have core graphics like objective C Core graphics?
android
Solution
Android uses the `Canvas` API, which hosts all drawing calls (SDK Documentation). Every `View` object is passed a `Canvas` on which to draw its contents. You can customize the output of any view by subclassing and overriding its `onDraw()` method (SDK Documentation) to draw whatever contents you would like onto that view's `Canvas`.
Problem
I an trying to port a drawing algorithm from iPhone to android but the problems that i haven't find graphics method in android which is slimier to iPhone, please help. Example: iPhone having a method drawInRect() but android haven't. In iPhone they will get current context of drawing but we don't have same concept.