I have a PNG file that I want to use for an overlay - however, this file has to be mirrored (and rotated by 180°), but in order to save space, I don\'t want to place the mir
You can simply use View.setScaleX()
For example
public void mirrorView(View v){ v.setScaleX(-1.0f); }