Android TableLayout高度不会填满整个屏幕

时间:2012-07-24 16:35:31

标签: android tablelayout

我有一个线性布局,里面只有一个TableLayout。 表格布局还有两行,每行两列。 First Table Row有两个图像。 Second Table Rows有两个按钮。

但是这并没有显示在整个屏幕上,而只是显示在前半部分或者可能取决于图像高度。两个图像实际上是相同的文件,但显示不同的宽度。 请帮忙... 这是布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:stretchColumns="*">

        <TableRow
            android:layout_height="fill_parent">

            <ImageView
                android:id="@+id/tp_image"
                android:layout_width="0dip"
                android:layout_height="fill_parent"
                android:layout_weight="0.9"
                android:scaleType="fitXY"
                android:src="@drawable/images" />

            <ImageView 
                android:id="@+id/s_image"
                android:src="@drawable/images"
                android:layout_width="0dip"
                android:layout_height="fill_parent"
                android:scaleType="fitXY"
                android:layout_weight="0.1"
                />
        </TableRow>
        <TableRow >
            <Button 
                android:id="@+id/button_LC"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/button_LC"/>
            <Button 
                android:id="@+id/button_RC"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/button_RC"/>
        </TableRow>
    </TableLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:16)

<TableRow
    android:layout_height="0dp"
    android:layout_weight="1" >

到两个表行或仅到第一行。