web-dev-qa-db-ja.com

Androidxスクロールビューの動作が働いていません

スイッチング後Androidx次のコードが機能しなくなりました。コンテンツをスクロールするために使用されたツールバーの下のTextViewの下のTextViewがあります。同じScollFlagsをツールバーに設定した場合にのみ機能させることができましたが、その場所に保持します。このツールバーを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>
 _

私の場合、問題はNestedScrollViewの余白にありました。私はNestedScrollViewから余白を削除し、すべてが仕事を始めました。

0
Axbor Axrorov