[android-developers] Re: How can I get the highest framerate with this quellcode?

2010-01-03 Thread Martin
Thank you! I am using SurfaceView now in my game and it is really f** FAST!! :-) thanks! I found this good tutorial here: http://www.droidnova.com/playing-with-graphics-in-android-part-i,147.html Martin On 2 Jan., 14:16, ko5tik kpriblo...@yahoo.com wrote: Depending on UI event handling to

[android-developers] Re: How can I get the highest framerate with this quellcode?

2010-01-02 Thread ko5tik
Depending on UI event handling to produce smooth and accurately timed animations is usually bad idea In your code, if you remove delay you are just trashing event pipeline, so UI will (and certainly does) become irresponsive. And if you keep it in, your delays are unpredictable (let me Guess,