BottomSheetBehavior 该视图不是 CoordinatorLayout 的子视图
Posted
技术标签:
【中文标题】BottomSheetBehavior 该视图不是 CoordinatorLayout 的子视图【英文标题】:BottomSheetBehavior The view is not a child of CoordinatorLayout 【发布时间】:2018-09-10 10:01:39 【问题描述】:我正在尝试实现一个持久的BottomSheet
,我的layout
预计是BottomSheet
已经是CoordinatorLayout
的孩子,但我不知道为什么我会得到这个异常。
这是我的BottomSheet
布局:
<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/bottom_sheet"
android:layout_
android:layout_
android:background="#fff"
android:orientation="vertical"
android:padding="10dp"
app:behavior_hideable="true"
app:behavior_peekHeight="?actionBarSize"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<LinearLayout
android:layout_
android:layout_
android:orientation="horizontal"
android:layout_gravity="center_vertical"
android:weightSum="3">
<TextView
android:layout_
android:layout_
android:layout_marginBottom="10dp"
android:layout_weight="2"
android:text="Order Details"
android:textColor="#444"
android:textSize="18dp"
android:textStyle="bold" />
<TextView
android:layout_
android:gravity="right"
android:layout_
android:layout_weight="1"
android:textStyle="bold"
android:textSize="15dp"
android:text="₹435.00"></TextView>
</LinearLayout>
<TextView
android:layout_
android:layout_
android:text="Chicken Fried Rice 1x1" />
<TextView
android:layout_
android:layout_
android:text="Paneer Tikka 1x2" />
<TextView
android:layout_
android:layout_
android:layout_marginTop="10dp"
android:text="Delivery Address"
android:textColor="#444"
android:textStyle="bold" />
<TextView
android:layout_
android:layout_
android:text="Flat No 404, Skyline Apartments, Vizag - 500576" />
<Button
android:layout_
android:layout_
android:layout_marginTop="30dp"
android:background="#000"
android:foreground="?attr/selectableItemBackground"
android:text="PROCEED PAYMENT"
android:textColor="#fff" />
</LinearLayout>
我的活动布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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_
android:layout_
android:background="#efefef"
tools:context=".activities.CityCouponActivity">
<android.support.design.widget.AppBarLayout
android:layout_
android:layout_
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content" />
<!-- Adding bottom sheet after main content -->
<include layout="@layout/bottom_sheet_filter" />
</android.support.design.widget.CoordinatorLayout>
活动代码:
LayoutInflater inflater = LayoutInflater.from(this);
View LayoutView = inflater.inflate(R.layout.bottom_sheet_filter, null, false);
mBottomSheetBehavior = BottomSheetBehavior.from(LayoutView);
/*....*/
【问题讨论】:
【参考方案1】:我被<merge>
标记折叠我的模态表布局并更改为活动xml 的CoordinatorLayout 顶部布局。在包含活动布局的底页之后。然后就成功了。
【讨论】:
【参考方案2】:你必须使用merge
而不是include
。
如果您看到BottomSheetBehavior.java
来源,您将看到检查:
ViewGroup.LayoutParams params = view.getLayoutParams();
if (!(params instanceof CoordinatorLayout.LayoutParams))
throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
当您使用include
时,它会用additional 包装您的布局,因此您的布局参数将不再是 CoordinatorLayout.LayoutParams 的实例。
【讨论】:
【参考方案3】:这就是我必须获得底部工作表行为来解决此问题的方式
dialog?.setOnShowListener dialog ->
val d = dialog as BottomSheetDialog
val bottomSheetInternal =
d.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet)
val bottomSheetBehaviour=BottomSheetBehavior.from(bottomSheetInternal)
//use this behaviour
【讨论】:
以上是关于BottomSheetBehavior 该视图不是 CoordinatorLayout 的子视图的主要内容,如果未能解决你的问题,请参考以下文章
嵌套的 RecyclerView 滚动无法向下滚动 ViewPager2 的 BottomSheetBehavior
BottomSheetBehavior 不在 androidX 库中
Android使用BottomSheetBehavior 和 BottomSheetDialog实现底部弹窗