In my app each of the screens has a background image. I want to use the same image for portrait and landscape, but to make it look decent I need to rotate the image 90 degrees when in landscape so that it does not get stretched to fill the screen.
My solution was to just create two copies of the image one for portrait that I put in drawable-port and one for landscape that I put in drawable-land. Now that I have many different backgrounds my solution of just embedding a second copy of the image in my apk is causing the apk size to be much larger then needed.
How can I support rotated images, preferably in pure XML. In code I suppose you could just rotate the image before onStart and it would work, but I would really rather keep it in the XML if possible.
Thanks for the help!