我想为我的 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>