4

我有这个输出

http://www.cubixshade.com/images/align_row.jpg

我希望作为日期字段的第一个字段垂直居中对齐?我应该使用什么来在其他字段的左侧或右侧添加一些空间?

4

2 回答 2

13

您可以将android:gravity="center_vertical"属性设置为 TableRow 以使其子元素垂直居中对齐。

您也可以使用android:layout_marginLeftproperty 或android:layout_marginRiightproperty 从左右放置一些边距,类似地,您可以使用android:layout_marginTopor将边距放置在顶部和底部android:layout_marginBottom

如果要拉伸列,则可以使用该android:layout_weight属性来定义列的重量。

作为参考,您可以在下面的示例中看到 2 列

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/TableLayout01"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1" >

    <TableRow
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical" >

    <TextView
        android:id="@+id/TextView01"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Male"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <EditText
        android:id="@+id/etNoOfMale"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:inputType="number"/>
    </TableRow>

    <TableRow
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical" >

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Female"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <EditText
        android:id="@+id/etNoOfFemale"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:inputType="number"/>
    </TableRow>

</TableLayout>
于 2012-11-13T06:40:37.223 回答
-1

您可以在您的 xml 文件页面中使用下面的标签来正确对齐,如果可以提供有关您所面临的 pblm 的详细信息,我可以给出更多解释。

android:layout_marginLeft="25dp"
android:layout_below="@+id/imageView1"

第一个代码从左边给出 25dp 的边距,第二个代码只是将文件与 imageview1 下的右对齐。

还有另一种方法 只需右键单击文本视图或您在设计页面中添加的任何内容,选择其他属性->布局参数->然后选择您需要的项目[它包含所有对齐属性。

希望这个对你有所帮助。谢谢

于 2012-11-13T06:31:09.433 回答