I'm trying to program a little game for Android, and when I draw the bitmap and animate it using Sprites, I can see a trail in the image! (it's a PNG image). I know it is not a problem of the sprites, because I used a static image moving along the X axis and I could still see the trail
This is the code I used to load the image:
bmp = BitmapFactory.decodeResource(getResources(), R.drawable.image);
How can I eliminate it so I can only see one of the sprites every time?
Thank you very much in advance!