即使相应 Activity 具有 ScrollView,如何将按钮设置在固定位置

How to Set a Button at a fixed position even when respective Activity has ScrollView

当 activity 有 ScrollView 组件时,有没有办法使用一些不可滚动的视图?

我希望我的按钮的行为类似于下面问题中的按钮,我希望它也固定在 UI 的底部:

how to set a button at a fixed location on the bottom of UI?

这是我的布局代码:

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

    <FrameLayout
        android:id="@+id/map_frameview"
        android:layout_width="match_parent"
        android:layout_height="200dp">
    </FrameLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingTop="20dp">
    </LinearLayout>

</LinearLayout>
</ScrollView>

提前致谢!

您在问题中附加的 link 显示了您可以如何做到这一点。您可以为此使用 RelativeLayout。这个想法是,你需要告诉一个按钮留在屏幕底部并告诉滚动视图连同它的可滚动内容一起留在按钮上方:

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

    <Button
        android:id="@+id/btnMy"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/btnMy">

        <LinearLayout
            xmlns:app="http://schemas.android.com/apk/res-auto"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@id/btnMy"
            android:orientation="vertical">

            <FrameLayout
                android:id="@+id/map_frameview"
                android:layout_width="match_parent"
                android:layout_height="200dp">
            </FrameLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:paddingTop="20dp">
            </LinearLayout>

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