我以编程方式设置 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 中)不会破坏简单的代码?;)