我在 Android 中做井字游戏。当我单击 ImageButton 时,显示应用程序的图像会放大组件,而不考虑按钮的大小。
我使用属性android:scaleType="fitCenter"
(几乎fitXY
, centerInside
, fitCenter
, fitStart
)来尝试将图像放入组件中,但它不起作用。
这是XML
我的 ImageButton 代码的一部分:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<ImageButton
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="100dp"
android:layout_weight="0.246"
android:onClick="onDonGato"
android:text="" />
<ImageButton
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.246"
android:onClick="onDonGato"
android:scaleType="fitCenter"
android:text="" />
<ImageButton
android:id="@+id/btn3"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.246"
android:onClick="onDonGato"
android:scaleType="fitCenter"
android:text="" />
</LinearLayout>
我不考虑运行应用程序的 Android 设备(因为我在 Android 虚拟设备上运行游戏并且它发生了同样的问题)。
我将不胜感激任何帮助解决我的问题。谢谢。