Вопрос

Im trying to convert a java program to an android program. So the question is: What is the equivalent of graphics type variable on android. For example "protected Graphics entryGraphics;"

Это было полезно?

Решение

Android has the Canvas class which is essentially the equivalent. For more information please see the official 2D graphics guide.

However Canvas uses the CPU to render the graphics. For GPU rendering and therefore better performance, you may want to check out OpenGL.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top