2

ImageButton の ImageResource をプログラムで設定しますが、それ自体は xml で作成されます。

        <ImageButton
            android:id="@+id/id_of_image_button"
            android:layout_width="88dp"
            android:layout_height="88dp"
            android:layout_below="@+id/id_of_other_image_button"
            android:layout_centerHorizontal="true"
            android:background="@drawable/background_of_image_button"
            android:contentDescription="@string/description_of_image_button"
            android:onClick="onButtonClick"
            android:scaleType="fitCenter" />

Javaでsrcを設定しました(他のコードに依存します...)

    ImageButton ib = (ImageButton) findViewById(R.id.id_of_image_button);
    ib.setImageResource(R.drawable.src_of_image_button);

ImageResource (背景ではなく src のみ) をミラーリングするにはどうすればよいですか? 単純なコードを爆破しない (Java/XML の) 解決策はありますか? ;)

4

3 に答える 3