0

4 つのセルを持つテーブルを作成しようとしています。各行には 2 つImageButtonのセルがあります。ImageButton何らかの理由tablerowmatch parent

コードは次のとおりです。

<LinearLayout 
    android:layout_height="wrap_content"
     android:layout_width="match_parent"
    android:layout_weight="1" >
<TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"    

   >

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

        <ImageButton
            android:id="@+id/button5"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/button4"
            android:background="@null"
            android:onClick="changepic2"

            android:src="@drawable/breakingdawn"
            android:text="Breaking Dawn" />

        <ImageButton
            android:id="@+id/button4"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignBaseline="@+id/button1"
            android:layout_alignBottom="@+id/button1"
            android:layout_alignLeft="@+id/button5"
            android:layout_alignParentRight="true"
            android:background="@null"
            android:onClick="changepic3"

            android:src="@drawable/newmoon" />

    </TableRow>

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <ImageButton
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@+id/button3"
            android:layout_alignParentLeft="true"
            android:onClick="changepic"

            android:paddingTop="2dp"

            android:src="@drawable/twilight"
            android:background="@null"/>

        <ImageButton
            android:id="@+id/button3"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentBottom="true"
            android:onClick="changepic1"

            android:src="@drawable/eclipse"
            android:paddingTop="2dp"
            android:background="@null" />
    </TableRow>
</TableLayout>

画面に正確に収まるようにするにはどうすればよいですか?

ありがとう!!:)

4

1 に答える 1

0

それ以外の

これ android:src="@drawable/eclipse"

使用する android:background="@drawable/eclipse"

そして一度やってみる。それはあなたを助けるかもしれません

wrapcontentの代わりに使用しますmatchparent

于 2012-11-05T10:43:58.133 に答える