gpt4 book ai didi

android - 如何防止 ScrollView 隐藏页脚?

转载 作者:行者123 更新时间:2023-11-29 14:25:29 25 4
gpt4 key购买 nike

屏幕上有页眉和页脚,而屏幕中心(内容区域)被 ScrollView 占据。当我启动应用程序时,会显示页脚。但是,当我单击元素“A”时,它会在屏幕上显示更多元素,将其他元素推到下方。 ScrollView 确实使中央部分可滚动,但它也隐藏了页脚(屏幕底部的灰色 LinearLayout)。

如何让页脚保留在屏幕底部?我希望内容区域只滚动。页眉和页脚 XML 位于 ScrollView 元素之外。我尝试使用 RelativeLayout 作为页脚而不是 LinearLayout,但没有成功。

这是点击元素“A”之前和之后的样子。

Before click

After click

如果需要,我可能会提供代码、XML 和 Java,但仅此而已。

最佳答案

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:fillViewport="true">

<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</ScrollView>

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

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />

</LinearLayout>

</LinearLayout>

使用权重进行布局

关于android - 如何防止 ScrollView 隐藏页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8971143/

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