无法向 ScrollView 添加页脚 - Android

问题描述 投票:0回答:1

我目前正在开发移动应用程序,当我尝试将页脚放在

ScrollView
下时遇到问题。

这是我的代码:

<RelativeLayout
    android:id="@+id/RelativeLayout01"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <RelativeLayout
        android:layout_alignParentBottom="true"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/bottomcontent"
        android:orientation="vertical"
        android:background="@drawable/border">
            //the footer is added dynamically
    </RelativeLayout>

<ScrollView
    android:layout_weight="1"
    android:id="@+id/scroller"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true" >
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:id="@+id/contentcontainer">
        <LinearLayout
            android:id="@+id/scrollcontentcontainer"
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            //the content is added dynamically from a layout template
        </LinearLayout>
    </LinearLayout>
</ScrollView>
</RelativeLayout>

ScrollView
的内容是一组相对布局,里面有一些按钮和文本视图。它基于我多次膨胀的布局。

页脚只是一个 LinearLayout,其中也有一些按钮。

问题是我尝试了在互联网上找到的所有不同的解决方案,但没有一个有效。就我而言,页脚卡在 ScrollView 的内容下方,而不是 ScrollView 本身下方,因此我必须向下滚动,直到内容结束才能到达页脚。但页脚应该保留在屏幕底部......

我也尝试了这些解决方案,但没有任何效果:

我也尝试了所有可能的东西,比如使用重力、重量、fillViewPort、对齐到底部......但不可能得到预期的结果。 最小API设置为14,我使用Android Studio。

编辑1:

可绘制边框:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:bottom="-2dp"
        android:left="-2dp"
        android:right="-2dp"
        android:top="2dp">
        <shape android:shape="rectangle" >
            <stroke
                android:width="1dp"
                android:color="#000000" />

            <solid android:color="#3b010101" />

            <padding android:left="10dp"
                android:right="10dp"
                android:top="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

</layer-list>
android android-layout layout android-studio android-scrollview
1个回答
1
投票

您可以尝试以下方法,我在

ScrollView
中添加
RelaveLayout
时也遇到了麻烦。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/RelativeLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <RelativeLayout
        android:id="@+id/bottomcontent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@drawable/border">
        <!---add something there eg:-->

      <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:text="Test"/>

     </RelativeLayout>


    <ScrollView
        android:id="@+id/scroller"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@id/bottomcontent"
        android:layout_alignParentTop="true">

        <LinearLayout
            android:id="@+id/contentcontainer"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <LinearLayout
                android:id="@+id/scrollcontentcontainer"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

            </LinearLayout>
        </LinearLayout>
    </ScrollView>
</RelativeLayout>

.

我在本文档中找到了以下内容。这肯定会导致问题

注意:在平台版本 17 及更低版本中,RelativeLayout 受到 一个测量错误,可能会导致子视图被测量 MeasureSpec 值不正确。 (参见MeasureSpec.makeMeasureSpec 更多详细信息。)当relativelayout容器被 放置在滚动容器中,例如 ScrollView 或 水平滚动视图。如果自定义视图未正确配备 使用 MeasureSpec 模式进行测量 UNSPECIFIED 被放置在 relativelayout,无论如何,这都会像relativelayout一样默默地工作 将传递一个非常大的 AT_MOST MeasureSpec 相反。

此行为已为设置的应用程序保留 android:targetSdkVersion="17" 或更旧的清单的使用-sdk 兼容性标记。面向 SDK 版本 18 或更高版本的应用程序将 接受正确的行为

© www.soinside.com 2019 - 2024. All rights reserved.