0

我想为我的 Android 应用程序创建一个带有文本和表格的 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>
4

1 回答 1

0

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

于 2012-08-28T16:57:12.123 回答