Je veux retourner l'image pour l'arrière-plan du bouton en XML. J'ai vu un exemple de comment le faire, mais c'était par programmation : http://xjaphx.wordpress.com/2011/06/26/image-processing-image-flipping-mirroring . Quoi qu'il en soit, j'ai un fichier xml (button_left_state.xml) comme ci-dessous :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<rotate android:fromDegrees="180.0" android:toDegrees="180.0"
android:pivotX="50%" android:pivotY="50%" android:drawable="@drawable/buttonrightpressed" />
</item>
<item>
<rotate android:fromDegrees="180.0" android:toDegrees="0.0"
android:pivotX="50%" android:pivotY="50%" android:drawable="@drawable/buttonright"/>
</item>
</selector>
Mais ce code fait juste pivoter l'image à 180 degrés. Est-il possible de retourner l'image en xml ?