我以前使用的是android.support.design.widget.bottomsheetbehavior,现在androidx中没有,有人建议使用com.google.android.material.bottomsheetbehavior(请参阅此链接BottomSheetBehavior not in androidX libraries),但它有一些错误,与nestedscrollview冲突,有时它不会将拖动传递到nestedscrollview。
有没有androidx的替代品,而不是google material的?
我查看了google的以下链接,但没有找到android.support.design.widget.bottomsheetbehavior的替代品:https://developer.android.com/jetpack/androidx/migrate

最佳答案

您可以使用app:layout_behavior=“com.google.android.material.bottomsheet.bottomsheetbehavior”
而不是app:layout_behavior=“android.support.design.widget.bottomsheetbehavior”

08-04 01:35