В основном у меня есть фрагмент с указанным c макетом, который имеет CoordinatorLayout в качестве родителя и фрагмент stati c с BottomSheetBehaviour (также некоторые другие представления, не связанные с вопросом) `
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/main_activity_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
Some other views....
<fragment
android:id="@+id/home_apps_widget"
android:name="apps.calo.justLauncher.fragments.HomeAppsWidget"
android:layout_width="0dp"
android:layout_height="57dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<fragment
android:id="@+id/bottom_sheet_container"
android:name="apps.calo.justLauncher.fragments.AppDrawerFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout="@layout/app_drawer_fragament"
app:behavior_hideable="true"
app:behavior_peekHeight="0dp"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
tools:layout="@layout/app_drawer_fragament" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
`
Внутри фрагмента stati c у меня есть следующая раскладка:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/app_drawer_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/app_drawer_background">
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/app_drawer_indicator"
android:visibility="invisible"
android:layout_below="@id/app_search_widget"
android:layout_marginTop="8dp"
android:layout_marginBottom="5dp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/app_list_recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:itemCount="4"
android:clipToPadding="false"
app:spanCount="4"
tools:listitem="@layout/app_item"
android:layout_above="@id/app_drawer_indicator"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
android:orientation="vertical"
android:layout_below="@id/app_search_widget"
android:layout_marginTop="8dp"
android:layout_marginBottom="5dp" />
<apps.calo.justLauncher.view.Pager2Indicator
android:id="@+id/app_drawer_indicator"
android:layout_width="wrap_content"
android:layout_height="11dp"
android:layout_alignParentBottom="true"
app:piv_radius="3dp"
app:selectedColorCustom="page_indicator_selected"
app:tabIndicatorHeight="3dp"
app:unselectedColorCustom="page_indicator_unselected" />
</RelativeLayout>
</layout>
При следующей настройке у вас может быть только один активный (recyclerview или viewpager2) , который может быть изменен с SharedPreferences.
Моя цель заключается в том, чтобы при прокрутке RecyclerView до верхней части следующая прокрутка переместилась на нижний лист (если вы попытаетесь снова прокрутить просмотр до верхней части), и касание переместит позицию Y нижнего листа.
Я хочу то же самое с видо-пейджером, но здесь вам не нужно прокручивать наверх, потому что он не прокручивается, поэтому, в основном, если вы прокрутите вниз, нижний лист займет на ощупь.
При текущей настройке RecyclerView и ViewPager «проглатывают» сенсорный экран, и вы не можете управлять нижним листом из них. Вы все еще можете разрушить нижний лист, если вы потянете его вниз, коснувшись вида, который находится над изображением реселлера / viewpager.
Мой вопрос таков: как я могу делегировать касание из viewler / viewpager в BottomSheet для управления положением Y в BottomSheet.
Интересно, что когда я меняю ViewPager2 на ViewPager, у меня возникает желаемый эффект с RecyclerView, но не с ViewPager.
Спасибо!