5

Android アプリケーションで次の設定を使用して、適切なスクロール動作を実装しようとしています。

Toolbarナビゲーションには、ジェットパック ナビゲーションをレイアウトとボトム ナビゲーションと組み合わせて使用​​します。私はまた、「1 つの活動、多くの断片」の原則を使用しています。下部のナビゲーションの各項目は、Fragment私のナビゲーション グラフに基づいて、対応する項目を起動します。これにはNavHostFragment、レイアウトで a を使用する必要があります。

私のToolbarレイアウトはアクティビティ レイアウトの一部であり、現在のフラグメントに基づいて入力されます。Toolbar一部のフラグメントには、必要に応じて追加される折りたたみが必要です。しかし、ツールバーが折りたたまれていると、次の問題に直面します。

特定のケースではToolbarNavHostFragmentが折りたたまれており、 にRecyclerView. 他の場合には、は の直接の子であるため、 に追加app:layout_behavior="@string/appbar_scrolling_view_behavior"してRecyclerView期待される結果を得ることができるようです。私の場合、は の子であり、これは基本的に(Layout Inspector によると) です。これは、が の直接の子ではないため、 の layout_behaviourが効果がないという問題につながります。RecyclerViewCoordinatorLayoutRecyclerViewFragmentFrameLayoutRecyclerViewRecyclerViewCoordinatorLayout

この問題の実用的な解決策を思い付くことができませんでした。誰かアイデアがありますか?

レイアウト/アクティビティの概要.xml

<androidx.constraintlayout.widget.ConstraintLayout
    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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".OverviewActivity">

<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_width="wrap_content"
                                                     android:layout_height="wrap_content"
                                                     android:id="@+id/toolbarCoordiantor"
                                                     android:layout_marginTop="?attr/actionBarSize"
                                                     app:layout_constraintTop_toTopOf="parent"
                                                     app:layout_constraintBottom_toTopOf="@id/overview_bottom_navigation"
                                                     app:layout_constraintStart_toStartOf="parent"
                                                     app:layout_constraintEnd_toEndOf="parent">

    <fragment android:layout_width="match_parent" android:layout_height="wrap_content"
              android:id="@+id/overview_fragmentholder"
              android:name="androidx.navigation.fragment.NavHostFragment"
              app:layout_constraintStart_toStartOf="parent"
              app:layout_constraintEnd_toEndOf="parent"
              app:layout_constraintTop_toBottomOf="@+id/toolbar"
              app:layout_constraintBottom_toBottomOf="parent"
              app:defaultNavHost="true"
              android:layout_marginBottom="?attr/actionBarSize"
              android:layout_marginTop="?attr/actionBarSize"
              app:navGraph="@navigation/nav_graph"
              app:layout_constraintVertical_bias="1.0"/>

    <include layout="@layout/toolbar"
             android:id="@+id/toolbar"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>


<com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/overview_bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:foregroundGravity="bottom"
        app:menu="@menu/navigation"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:itemBackground="@color/white"
        app:itemIconTint="@color/bottom_navigation_color_states"
        app:itemTextColor="@color/bottom_navigation_color_states"/>

レイアウト/ツールバー.xml

<com.google.android.material.appbar.CollapsingToolbarLayout
        android:id="@+id/collapsingToolbarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:layout_scrollFlags="scroll|exitUntilCollapsed|snap|snapMargins"
        android:minHeight="?attr/actionBarSize">

    <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent"
                                                       android:layout_height="wrap_content"
                                                       android:id="@+id/expandedToolbarContentContainer"
                                                       android:layout_marginTop="?attr/actionBarSize"
                                                       app:layout_collapseMode="parallax"/>

    <androidx.appcompat.widget.Toolbar android:layout_width="match_parent"
                                       android:layout_height="?attr/actionBarSize"
                                       app:layout_collapseMode="pin"
                                       style="@style/AppTheme.DarkToolbar"
                                       android:id="@+id/toolbarView">

        <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent"
                                                           android:layout_height="match_parent"
                                                           android:background="@drawable/round_outline"
                                                           style="@style/AppTheme.DarkToolbar.Container"
                                                           android:id="@+id/toolbarContentContainer"/>

    </androidx.appcompat.widget.Toolbar>

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

レイアウト/list.xml

<layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
    <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/dish_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scrollbars="vertical"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:layoutAnimation="@anim/layout_animation_fall_down"
    />

4

2 に答える 2

1

Jurij Pituljas のアプローチscrollToPositionは、作業方法を妨げRecyclerViewます。さらに でフラグメントに戻るとRecyclerView、スクロール位置が一番上にリセットされます。

より良いアプローチについては、こちらで説明しています。FrameLayout参照記事の周囲の s も必要ありません。フラグメントを でラップする代わりに、NestedScrollView非スクロール フラグメント レイアウト ビューを でラップするだけNestedScrollViewです。

アクティビティ レイアウトNavHostFragment:フラグメントをスクロール ビューにラップする必要はありません。を設定するだけlayout_behaviorです。

...
<fragment
  android:id="@+id/navigation_host_fragment"
  android:name="androidx.navigation.fragment.NavHostFragment"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  app:defaultNavHost="true"
  app:layout_behavior="@string/appbar_scrolling_view_behavior"
  app:navGraph="@navigation/navigation_graph" />
...

root を使用したフラグメント レイアウトRecyclerView:RecyclerViewスクロール機能があるため、特別なことは何もありません。

<androidx.recyclerview.widget.RecyclerView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:scrollbars="vertical" />

例を使用したフラグメント レイアウトTextView:ルート内でラップしNestedScrollViewて、スクロール機能を追加します。

<androidx.core.widget.NestedScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="non scrolling content wrapped" />
  </LinearLayout>
</androidx.core.widget.NestedScrollView>
于 2019-12-03T08:54:37.223 に答える