Androidx 滚动视图行为不起作用

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

切换到androidx后,以下代码停止工作。工具栏下方的 TextView 过去可以随内容滚动,但现在不能了。仅当我将相同的scrollFlags设置为工具栏时,我才设法使其工作,但我想将其保留在适当的位置。除了将 Toolbar 移出 AppBarLayout 和 CoordinatorLayout 之外,还有其他解决方案吗?

<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:layout_width="match_parent"
        android:layout_height="match_parent">

    <com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        <androidx.appcompat.widget.Toolbar
                app:title="Non-scrollable title"
                android:layout_width="wrap_content"
                android:layout_height="?android:attr/actionBarSize"/>

        <TextView
                app:layout_scrollFlags="scroll"
                android:layout_margin="16dp"
                android:textSize="20sp"
                android:text="this should scroll with the content"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.core.widget.NestedScrollView
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        <!-- some scrollable content here -->

    </androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>
android-appbarlayout androidx
3个回答
7
投票

替换属性 老的:

app:layout_behavior="@string/appbar_scrolling_view_behavior"

新:

app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"

并添加

implementation 'com.google.android.material:material:1.0.0'

0
投票

就我而言,问题出在 NestedScrollView 的边缘。我从 NestedScrollView 中删除了边距,一切都开始工作了。


0
投票

我添加了同样的问题

app:layout_scrollFlags="scroll|enterAlways"

在应用栏工具栏中和这个

app:layout_behavior="@string/appbar_scrolling_view_behavior"

嵌套滚动条,它非常适合我

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