我正在尝试创建一个带有固定底部组件(带有文本和按钮的LinearLayout)的CoordinatorLayout,该组件的中部(工具栏下方和底部组件上方)具有一些可滚动的内容,但是该内容甚至没有滚动虽然我已经使用NestedScrollView了。
这是我的布局XML,
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
app:navigationIcon="@drawable/ic_back_blue" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="72dp"
android:paddingEnd="72dp"
android:scrollbars="none"
android:layout_gravity="center_vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="16dp"
android:layout_marginLeft="16dp"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_marginTop="16dp"
android:layout_gravity="center">
<ImageView
android:id="@+id/feature_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/feature_image"
android:importantForAccessibility="no"
tools:visibility="visible" />
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/feature_animation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"/>
</FrameLayout>
<TextView
android:id="@+id/screen_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:textSize="24sp"
android:textColor="?textColorPrimary"
android:gravity="center"
android:text="Title for the page, highlighting the main idea"/>
<TextView
android:id="@+id/screen_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:textSize="18sp"
android:gravity="center"
android:text="Message description tezt, explaining the idea in a little more detail to give the users more context" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:paddingStart="72dp"
android:paddingEnd="72dp"
android:background="?contentBackgroundColor">
<TextView
android:id="@+id/screen_additional_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:gravity="center"
android:text="Additional message text, with any other useful info, disclaimers etc.." />
<Button
android:id="@+id/screen_primary_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_gravity="bottom"
android:text="Call to Action" />
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
有人可以让我知道我在做什么错吗?
谢谢!