gpt4 book ai didi

android - ScrollView 上方的线性布局

转载 作者:搜寻专家 更新时间:2023-11-01 08:12:25 24 4
gpt4 key购买 nike

我有一个简单的 android 布局,由一个包含表格布局的 ScrollView 组成。该表显示正确,但我想在 ScrollView 上方添加一个静态标题,以便基本上表中列的标签始终保留在屏幕顶部。但是,当我添加 <LinearLayout><ScrollView> 之上在我的布局文件中,它使它全部消失。

谁能发现我对我的 xml 文件做错了什么?

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="top" >

<LinearLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TableLayout
android:id="@+id/mainTable"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</ScrollView>

</LinearLayout>

事实上,我没有看到 ScrollView 或表格布局,但如果我删除 header线性布局,它显示得很好。

最佳答案

LinearLayouts需要设置 android:orientation 参数。

关于android - ScrollView 上方的线性布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8539246/

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