更改表格行高

时间:2014-05-12 04:38:15

标签: android user-interface android-tablelayout shrink

我正在做一个具有平铺UI的应用。我有一个问题,因为我使用的是一个包含2个表行的表格布局,但是,我需要缩小第一行,但我已经尝试过使用填充和边距(android:paddingBottom) & android:layout_marginBottom)但我不知道如何缩小第一行来做我想做的事情。我附上了2张图片,更好地解释了我想要做的事情,第一张图片是我在这里放入的代码。第二个更好地解释了我想要做的事情。

我必须做一个响应式用户界面,所以我还没想过要使用一个固定的android:layout_height。

这就是我所拥有的:

This is what I have

这就是我想要做的事情:

This is what I want to do

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white" >

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

        <Button
            android:id="@+id/button1"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_margin="2dp"
            android:layout_weight="1"
            android:background="@drawable/camera"
            android:gravity="top|center_horizontal"
            android:onClick="camera" />

        <Button
            android:id="@+id/button2"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_margin="2dp"
            android:layout_weight="1"
            android:background="@drawable/gallery"
            android:gravity="top|center_horizontal"
            android:onClick="gallery" />
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <Button
            android:id="@+id/button3"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_margin="2dp"
            android:layout_weight="1"
            android:background="@drawable/bank_bbva"
            android:gravity="top" />
    </TableRow>
</TableLayout>

2 个答案:

答案 0 :(得分:0)

为什么不尝试使用布局?

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

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

<Button
        android:id="@+id/button1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_margin="2dp"
        android:layout_weight="0.5"
        android:background="@drawable/camera"
        android:gravity="top|center_horizontal"
        android:onClick="camera" />

    <Button
        android:id="@+id/button2"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_margin="2dp"
        android:layout_weight="0.5"
        android:background="@drawable/gallery"
        android:gravity="top|center_horizontal"
        android:onClick="gallery" />
</LinearLayout>

<Button
        android:id="@+id/button3"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_margin="2dp"
        android:layout_weight="1"
        android:background="@drawable/bank_bbva"
        android:gravity="top" />

</LinearLayout>

答案 1 :(得分:0)

// try this way,hope this will help you...

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dp">

        <Button
            android:id="@+id/button1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/camera"
            android:onClick="camera" />

        <Button
            android:id="@+id/button2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_weight="1"
            android:background="@drawable/gallery"
            android:onClick="gallery" />
    </TableRow>

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

        <Button
            android:id="@+id/button3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/bank_bbva"/>
    </TableRow>
</TableLayout>