I have a question about making a drawing app for Android. What is the best approach? I would like to make an app that keeps all objects available for the user to work with.
Do I have to use opengl for that? I would like to use the canvas drawing approach since it is easier to use, but perhaps this is not possible for what I want.
And how do I keep all object available for the user? Do I need to use large arraylists?
Thanks in advise.
The Android developer guidelines are pretty clear. If you need to draw 3d and/or multiple frames per second, then OpenGL is probably best. For a “paint” style drawing app,
Canvasought to be fine.