1

图片:www.gunzhaxplz.com/xmlAndroid.png 我的问题 http://gunzhaxplz.com/xmlAndroid.png

前言:我正在制作一个需要在一个表格行上有 6 个图像的应用程序。

问题:我似乎无法调整大小的图像,右边的最后一张图像不在屏幕上

这是 XML:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >

<TableRow
    android:id="@+id/tableRow1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >




    <ImageButton
        android:id="@+id/imageButton1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/golem_square" />





    <ImageButton
        android:id="@+id/imageButton2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/lizard_square" />




    <ImageButton
        android:id="@+id/imageButton3"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/baron_square" />



    <ImageButton
        android:id="@+id/imageButton4"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/dragon_square" />

</TableRow>

<TableRow
    android:id="@+id/tableRow2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <ImageButton
        android:id="@+id/ImageButton03"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/golem_square" />

    <ImageButton
        android:id="@+id/ImageButton01"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/lizard_square" />

    <ImageButton
        android:id="@+id/ImageButton02"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/baron_square" />

    <ImageButton
        android:id="@+id/ImageButton04"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/dragon_square" />
</TableRow>

4

1 回答 1

1

尝试在每个 ImageButton 中设置以下参数

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:maxWidth="32dpi"
android:maxHeight="32dpi"
于 2012-11-04T04:08:31.973 回答