gpt4 book ai didi

android - 相对布局内的表格布局

转载 作者:太空狗 更新时间:2023-10-29 16:22:26 25 4
gpt4 key购买 nike

是否可以在相对布局中使用表格布局。例如:

在 main.xml 中:

< RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TableRow
android:id="@+id/tableRow4"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:gravity="center_horizontal" >

<TextView
android:id="@+id/textView9"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18dp"
android:text="Weather Table"
android:gravity="center"> < /TextView>

</ TableRow>
</ TableLayout>
</ RelativeLayout>

如何在单个 xml 文件中使用两种类型的布局。

最佳答案

1-删除您分配给 TableLayout("http://schemas.android.com/apk/res/android") 的命名空间。它看起来是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TableRow
android:id="@+id/tableRow4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal" >

<TextView
android:id="@+id/textView9"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Weather Table"
android:textSize="18dp" >
</TextView>
</TableRow>
</TableLayout>
</RelativeLayout>

2-您的标签有不正确的空格,例如</ TableRow> .使用 </TableRow>而不是它。

关于android - 相对布局内的表格布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11327915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com