vote up 1 vote down star
2

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.

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.

Is this a performance issue and I'm being too ambitious or is it a bug I can overcome?

If it is a performance issue is there anything I can do to improve things?

flag

4  
Can you provide any code for us to look at? Are you doing anything else with the frame layout? What version of the SDK are you using (i.e. cupcake?) – jamesh Jun 22 at 22:12
Is this the class you're using? developer.android.com/reference/android/… – Jarett Jun 29 at 16:51

2 Answers

vote up 1 vote down

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.

Do you have control over whether the device does double buffering or not?

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.

link|flag
I'm using the animation framework provided by the Android framework so I have neither control over the double buffering or the display buffer. To me it looks like a bug. If this were a performance issue because my requirements were too ambitious the animation should just be jerky/have a low framerate. It performs reasonably well, it just leaves what look like pieces of the image behind it. They're cleaned up fairly quickly but it doesn't look good. – Tom Martin Jun 18 at 21:11
@Tom - I think I've reached the limit of what I can suggest. I don't really know the environment you're developing in - but I do know animation having worked with real time 3D graphics for a number of years and I've encountered similar sounding problems. But as I said, without actually seeing what's going on it's difficult to diagnose the problem. – ChrisF Jun 19 at 8:13
vote up 0 vote down

I would suggest using a SurfaceView 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.

As for general Android performance, it is very possible to have reasonably high frame rates, so you aren't expecting too much.

link|flag

Your Answer

Get an OpenID
or

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