What is the best way to generate fractal curves on android?

Should I use NDK?

and if not

What is the right class to extend View or SurfaceView

I've generated two fractals extending View and overriding onDraw(), when the iteration count is big and curve ratio is too small, generation is too slow

link|improve this question
NDK might be the best solution if you choose to draw them using Java paint methods. But it's also rather "common" to use OpenGL ES 2.0 pixel shaders for creating fractals these days. – harism Feb 3 at 15:06
feedback

2 Answers

up vote 3 down vote accepted
+50

You're wondering how to get more speed in the drawing. There is much information about that on this site (for example here you have some charts).

Basically, you'll get better performance extending SurfaceView than extending View and better by using GLSurfaceView.

You can read here that using NDK will not benefit most applications. I think you shouldn't use it.

If you already know OpenGL I recommend to use GLSurface. If not, try if SurfaceView get enough FPS before learning OpenGL

link|improve this answer
feedback

Recently I stumbled on an Android tutorial at www.bringback.com which seems to contain a bunch of YouTube episodes each about 5-6 minute in length. If you want to jump straight into the SurfaceView tutorial go to part Learn Android Tutorial 1.28- Introduction to the SurfaceView.

link|improve this answer
Thanks for the source – Tiko Feb 16 at 19:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.