问题
我需要为我的应用程序使用 BottomSheetDialog (com.google.android.material.bottomsheet),但它没有按我预期的那样工作,底部工作表在展开时出现剪切。
我的实现
inline fun <T : ViewBinding> Context.makeBottomSheetDialog(
crossinline bindingInflater: (LayoutInflater) -> T,
isCancelable: Boolean = true,
isHideable: Boolean = true,
isFitContent: Boolean = true,
peekHeight: Int? = null,
onDismissListener: DialogInterface.OnDismissListener? = null,
): Pair<T, BottomSheetDialog> {
val layout = bindingInflater.invoke(LayoutInflater.from(this@makeBottomSheetDialog))
val dialog = BottomSheetDialog(this).apply {
setContentView(layout.root)
setOnDismissListener(onDismissListener)
setCancelable(isCancelable)
}.apply {
behavior.apply {
setHideable(isHideable)
isFitToContents = isFitContent
if(peekHeight != null) setPeekHeight(peekHeight)
}
}
return Pair(layout, dialog)
}
我已经研究过这个问题,每个人都建议创建自己的类,但就我而言,我希望它具有灵活的视图并且易于使用内联调用。当我看到 BottomSheetDialog 的基本代码时,我认为这是因为展开 BottomSheet 时容器(FrameLayout)的高度没有调整。
问题
我该如何解决这个问题?它使我也无法在视图底部附加按钮。谢谢!