BottomSheetDialogFragment没有显示

时间:2019-01-01 16:35:58

标签: android kotlin bottom-sheet

我已经遵循this tutorial在我的android应用程序中实现BottomSheetDiaogFragment。

这是我的底部工作表布局(bottom_sheet.xml):

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout 
    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="wrap_content">

<RadioGroup
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginTop="16dp"
    android:layout_marginEnd="16dp"
    android:layout_marginBottom="16dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <RadioButton
        android:id="@+id/rb1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_weight="1"
        android:text="@string/rb1" />

    <RadioButton
        android:id="@+id/rb2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_weight="1"
        android:text="@string/rb2" />

</RadioGroup>
</android.support.constraint.ConstraintLayout>

BottomSheetDialogFragment类:

class BottomSheetTaskRepeat : BottomSheetDialogFragment() {

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        return inflater.inflate(R.layout.bottom_sheet, container, false)
    }
}

活动:

private val bottomSheetTaskRepeat = BottomSheetTaskRepeat()

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)

    bottomSheetTaskRepeat.show(supportFragmentManager, "my_bottom_sheet")
}

问题在于底页没有显示!任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:0)

这是一个很晚的答案,我正在写给会遇到相同问题的任何人,这是我发现的:

由于某些原因,不受约束的视图高度在BottomSheetDialogFragment中不起作用。高度为wrap_content的视图将不会显示。(但阴影仍会存在),但是当您指定高度为80dp时,它将起作用。

对于这个问题,请更改您的RadioGroup高度并指定为:

android:layout_height="200dp"

希望有帮助。

更新: 由于BottomSheetDailogFragment的默认容器是FrameLayout,并且设置为WRAP_CONTENT,因此您可以在片段onStart方法中覆盖该容器,如下所示(Kotlin):

override fun onStart() {
    super.onStart()
    val containerID = com.google.android.material.R.id.design_bottom_sheet
    val bottomSheet: FrameLayout? = dialog?.findViewById(containerID)
    bottomSheet?.let {
        BottomSheetBehavior.from<FrameLayout?>(it).state =
            BottomSheetBehavior.STATE_HALF_EXPANDED
        bottomSheet.layoutParams.height = FrameLayout.LayoutParams.MATCH_PARENT
    }

    view?.post {
        val params = (view?.parent as View).layoutParams as (CoordinatorLayout.LayoutParams)
        val behavior = params.behavior
        val bottomSheetBehavior = behavior as (BottomSheetBehavior)
        bottomSheetBehavior.peekHeight = view?.measuredHeight ?: 0
        (bottomSheet?.parent as? View)?.setBackgroundColor(Color.TRANSPARENT)

    }
}

答案 1 :(得分:0)

尝试以下操作:

  1. 在您的 newInstance 中创建和使用无参数静态方法 BottomSheetDialogFragment 并对其调用 show() 方法。
  2. 尝试将 LinearLayoutCompat 作为根布局而不是 ConstraintLayout
  3. 尝试为根布局添加彩色背景以获取灵感。
  4. 为根布局尝试 match_parent 高度。
  5. 确保没有立即调用 dismiss()cancel()
  6. 检查可见性。
  7. 如果您的更改因 Android Studio 错误而没有反映出来,则重新启动 PC 和设备。