表格不显示布局中的内容

时间:2012-08-20 08:50:41

标签: android xml android-layout

我想为我的Android App创建一个LinearLayout,其中包含文本和表格。 显示TextView但隐藏了TableLayout或类似的东西。

我无法弄清楚,问题是什么。

以下是我布局的一些代码:

<LinearLayout
    android:id="@+id/ListWrapper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:layout_gravity="top"
    android:background="@color/listBackground" >

    <TextView
        android:id="@+id/aboutScreenMainText"
        android:text="@string/helpPage.mainText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="18dp"
        android:layout_marginTop="5dp"
        android:layout_marginLeft="5dp"
        android:layout_gravity="top"
        android:textColor="#000" />

    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="50dp">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/helpPage.addNoteText" />
            <View
                android:layout_width="fill_parent"
                android:layout_height="1dp"
                android:background="@color/mainTextColor">
             </View>
        </TableRow>   
    </TableLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

问题的解决方案非常简单;) 布局的方向是“水平”而不是“垂直”。