这是我的XML布局与名称songlist:
<android.support.design.widget.CoordinatorLayout
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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/viewA"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.6"
android:background="@android:color/holo_purple"
android:orientation="horizontal"/>
<android.support.v4.widget.NestedScrollView
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_blue_bright"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="308dp"
/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:clickable="true"
android:src="@drawable/personlog"
app:layout_anchor="@id/viewA"
app:layout_anchorGravity="bottom|center"/>
</android.support.design.widget.CoordinatorLayout>
这是我的片段,包含这个布局:
public class SongList extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.songlist,container,false);
textView=(TextView)view.findViewById(R.id.txt);
View bottomSheet = view.findViewById(R.id.bottom_sheet);
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
bottomSheetBehavior.setPeekHeight(200);
return view;}
}
但是当我吃午饭的时候,应用程序给予了我这个错误:
java.lang.IllegalArgumentException: The view is not a child of CoordinatorLayout
从这一行:
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
我怎么能解决这个问题?看起来一切都很好,但给予那个错误...如果有人能帮忙
8条答案
按热度按时间2w3rbyxf1#
BottomSheetBehavior
是CoordinatorLayout的子视图的交互行为插件,使其作为底部工作表工作。
此时,您的底层工作表
NestedScrollView
是LinearLayout
的子级。因此,只需完全删除最外层的LinearLayout
。但是现在你有一些更多的问题与你试图实现的底表。首先,你不应该在滚动视图中使用
wrap_content
。其次,你不应该在滚动视图中使用列表视图,因为它实现了自己的滚动。您可以通过仅使用列表视图作为底部工作表来简化此操作。lsmd5eda2#
如果使用数据绑定并将布局包含到片段中,则必须执行以下操作
mum43rcc3#
注意,如果你不使用CoordinatorLayout,而是使用BottomSheetDialogFragment(它为你创建了一个),我注意到你不能使用当前版本的Nav组件库(2.1.0-alpha 05)导航到带有Fragment方向的对话框片段,必须将其示例化为新的片段对话框,否则你会得到这个错误,即而不是使用这个:
navController().navigate(MerchantHistoryFragmentDirections.showDateSelection())
您必须使用此:
这是一个愚蠢的错误,希望这能帮助到一些人。
5f0d552i4#
在我的情况下,我使用了以下解决方案来解决这个问题
8e2ybdfx5#
在我的情况下而不是
我使用了
<android.support.constraint.ConstraintLayout
(在包含布局和BottomSheet的片段或Activity中)。mu0hgdu06#
您应该将布局设计更改为<androidx.coordinatorlayout.widget.CoordinatorLayout
对我很有效
slmsl1lt7#
您必须将视图强制转换为
View
,例如:在github上查看
2eafrhcq8#
你必须设置你的底部工作表布局在appbar布局下面你的内容布局