android 带有recyclerView的父片段和子片段标签布局内的CollapsingToolbarLayout未一起滚动

kzmpq1sx  于 2023-02-27  发布在  Android
关注(0)|答案(1)|浏览(117)
    • bounty将在3天后过期**。回答此问题可获得+50的声誉奖励。Android Dev正在寻找来自声誉良好来源的答案

我有一个带有CollapsingToolbarLayout和一些布局的父片段
然后在内部,有一个TabLayout,其中两个子片段具有recycer-View,两者没有一起滚动。
当用户在子回收器内向上滚动和向下滚动时-查看父片段****tabLayout子片段****textView(向上和向下移动)/隐藏和显示。
如何解决这一问题?
具有CollapsingToolbarLayout布局的父片段:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.appcompat.widget.AppCompatEditText
        android:id="@+id/edit"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_margin="20dp"
        android:background="@drawable/white_speed_search_bar_rounded_rectangle"
        android:text="Search"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/edit">

        <com.google.android.material.appbar.AppBarLayout
            android:id="@+id/app_bar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/ThemeOverlay.AppCompat.Dark">

            <com.google.android.material.appbar.CollapsingToolbarLayout
              
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_scrollFlags="scroll|enterAlways">

                <com.google.android.material.tabs.TabLayout
             android:id="@+id/tab"
              android:layout_width="match_parent"
                android:layout_height="wrap_content"
                     />

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

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

        <androidx.viewpager2.widget.ViewPager2
            android:id="@+id/viewPager"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
          
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/app_bar">

        </androidx.viewpager2.widget.ViewPager2>
    </androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

子片段1&2布局:

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

    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="16dp"/>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</LinearLayout>
rta7y2nd

rta7y2nd1#

您需要将滚动行为设置为ViewPager,以便CoordinatorLayout能够将ViewPager内容(即RecyclerView)的滚动与CollapsingToolbarLayout同步

<androidx.viewpager2.widget.ViewPager2
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    ...>

相关问题