Why is my animation leaving a trail? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T12:17:51Z http://stackoverflow.com/feeds/question/1015082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail 1 Why is my animation leaving a trail? Tom Martin 2009-06-18T20:42:14Z 2009-06-24T23:36:58Z <p>I'm animating a an ImageView from the left to the right of the screen using a translate animation. The ImageView is place inside a RelativeLayout over the top of my main layout using FrameLayout.</p> <p>When I run the animation on the emulator everything works pretty well but when I use run it on my G1 it leaves visual artifacts behind and effects the rendering of the text component behind it.</p> <p>Is this a performance issue and I'm being too ambitious or is it a bug I can overcome?</p> <p>If it is a performance issue is there anything I can do to improve things?</p> http://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail/1015106#1015106 1 Answer by ChrisF for Why is my animation leaving a trail? ChrisF 2009-06-18T20:46:06Z 2009-06-18T20:46:06Z <p>Without actually seeing the problem is sounds like you're not clearing the display buffer before writing the next frame. It doesn't sound like a performance issue to me.</p> <p>Do you have control over whether the device does double buffering or not?</p> <p>Given that it works on the emulator this could point to either a problem with the emulator or a bug in your code that isn't showing up on the emulator (which I suppose is technically a problem with the emulator!) rather than a performance issue.</p> http://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail/1041420#1041420 0 Answer by AdamC for Why is my animation leaving a trail? AdamC 2009-06-24T23:00:40Z 2009-06-24T23:00:40Z <p>I would suggest using a <a href="http://developer.android.com/reference/android/view/SurfaceView.html" rel="nofollow">SurfaceView</a> for animation. It is double-buffered, so it should eliminate flickering if you use it properly. If you want an example, the LunarLander demo included in the sdk shows this really well. Also, if you have a more specific question with code, ask away. </p> <p>As for general Android performance, it is very possible to have reasonably high frame rates, so you aren't expecting too much.</p>