I\'m trying to learn how to make an animated sprite in android and couldn\'t figure out how to go about organising my bitmaps. I have a sprite sheet of my character walking
To mirror your sprite simply apply the following transform on the Canvas: scale(-1, 1). You will have to offset the sprite by its width too.