BottomSheetBehavior不是CoordinatorLayout的子代

时间:2017-04-08 11:26:25

标签: android android-coordinatorlayout

这是我的XML布局,名称为歌曲列表:

enter image description here

<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);

怎么能解决这个问题?似乎所有的事情都运转良好,但给出了这个错误...如果有人可以请求帮助

6 个答案:

答案 0 :(得分:9)

BottomSheetBehavior

  

CoordinatorLayout子视图的交互行为插件,使其作为底层工作。

目前,您的底页NestedScrollViewLinearLayout的孩子。所以只需完全删除最外层的LinearLayout

<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: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>

    <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>

但是现在你在尝试实施的底页上遇到了一些问题。首先,您不应将wrap_content与滚动视图一起使用。其次,您不应在滚动视图中使用列表视图,因为它正在实现自己的滚动。您可以通过仅将列表视图用作底部工作表来简化此操作。

答案 1 :(得分:2)

如果您正在使用数据绑定并将片段的布局包括在内,则必须执行以下操作

val sheetBehavior = BottomSheetBehavior.from(binding.layoutBottomSheet.root)

答案 2 :(得分:1)

请注意,如果您不使用CoordinatorLayout而是使用BottomSheetDialogFragment(可以为您创建一个),我注意到您无法使用Nav组件库的当前版本(2.1 .0-alpha05),并且必须将其实例化为新的片段对话框,否则会出现此错误,即不要使用此错误:

navController().navigate(MerchantHistoryFragmentDirections.showDateSelection())

您必须使用此:

fragmentManager?.let {
            val dateSelection = DateSelectionFragment.newInstance()
            dateSelection.setTargetFragment(this, RC_DATE_SELECTION)
            dateSelection.show(it)
        }

这是一种钝度错误,因此希望可以对某人有所帮助。

答案 3 :(得分:0)

就我而言,而不是

<?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_width="match_parent"
    android:layout_height="match_parent"
    >

我使用了<android.support.constraint.ConstraintLayout(在包含布局和BottomSheet的片段或活动中)。

答案 4 :(得分:0)

您必须在内容布局下的应用栏布局中设置底部工作表布局

答案 5 :(得分:0)

就我而言,我使用以下解决方案来解决问题

    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
    val dialog = super.onCreateDialog(savedInstanceState)
    dialog.setOnShowListener { dialogInterface ->
        val bottomSheetDialog = dialogInterface as BottomSheetDialog
        setupFullHeight(bottomSheetDialog)
    }
    return dialog
}

  val bottomSheet = bottomSheetDialog
            .findViewById<FrameLayout>(R.id.design_bottom_sheet)
    val behavior: BottomSheetBehavior<*>?
    if (bottomSheet != null) {
        behavior = BottomSheetBehavior.from(bottomSheet)
        behavior.state = BottomSheetBehavior.STATE_EXPANDED
        behavior.isDraggable = false
    }