BottomSheetBehavior not in androidX libraries

后端 未结 3 1032
渐次进展
渐次进展 2020-12-23 11:03

I was using the BottomSheetBehavior with the original support library:

implementation \'com.android.support:design:27.1.1\' 

W

3条回答
  •  不知归路
    2020-12-23 11:20

    You could also replace

        app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    or 
        app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
    

    by

    app:layout_behavior="@string/bottom_sheet_behavior"
    

提交回复
热议问题