我在坐标布局内部有一个固定的底部工作表。我设置了bottomsheethideable = true并实现了BottomSheetBehaviour回调。目前,底部工作表在折叠模式下打开,并且当我在bottomsheet的视图分页器中滚动recylerview时。 BottomSheet也会向上滚动,这是bottomsheet的默认行为。我想使底部工作表处于折叠状态,直到到达recylerview的最后位置为止,然后底部工作表应向上滚动并要求相反的行为。
在底页的内部,有一个视图寻呼机。这是XML文件代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
android:background="@android:color/transparent"
android:orientation="vertical">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/ll_bottom"
android:background="@android:color/transparent">
<RelativeLayout
android:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:transitionName="app_bar_layout">
<com.appstreet.pixylz.view.ASToolbar
android:id="@+id/tb_top"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
android:minHeight="?attr/actionBarSize"
app:theme="@style/AppTheme.ActionBarTheme" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignWithParentIfMissing="true"
android:layout_below="@id/app_bar_layout" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
<LinearLayout
android:id="@+id/ll_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical">
<include
android:id="@+id/bottom_bar"
layout="@layout/layout_browser_bottom"
android:layout_width="match_parent"
android:layout_height="@dimen/bar_ht_with_9path_shadow"
android:visibility="gone" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:background="@color/colorPrimary"
app:tabGravity="fill"
app:tabIndicatorColor="@color/colorAccent"
app:tabIndicatorHeight="3dp"
app:tabMode="fixed" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
有人建议在CustomBottomSheetBehaviour内部使用返回false onTouchEvent 和 onInterceptTouchEvent 创建自定义BottomSheetBehaviour并禁用TouchEvent。使用此RecylerView Scrolled和BottomSheet仍保持在折叠位置,但位于recylerview滚动的末端。 BottomSheet不会向上或向下拖动,即使在recylerview底部页面的外侧滑动也不会拖动。
任何人都可以提供帮助或建议解决方案吗?谢谢。