Why is my animation leaving a trail? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T12:17:51Zhttp://stackoverflow.com/feeds/question/1015082http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail1Why is my animation leaving a trail?Tom Martin2009-06-18T20:42:14Z2009-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#10151061Answer by ChrisF for Why is my animation leaving a trail?ChrisF2009-06-18T20:46:06Z2009-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#10414200Answer by AdamC for Why is my animation leaving a trail?AdamC2009-06-24T23:00:40Z2009-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>