微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

显示BottomSheetDIalogFragment时如何禁用我的应用程序的变暗?

如何解决显示BottomSheetDIalogFragment时如何禁用我的应用程序的变暗?

我目前正在 Kotlin 中开发一个 Android 应用程序,我在其中使用了一个 BottomSheetDialog 片段。每当对话框弹出时,屏幕的其余部分都会变暗。我可以以某种方式禁用它吗?我不想点击片段后面的屏幕,我只是想让它显示为未变暗。 提前致谢:

片段的 XML:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content"
    android:background="@color/dark_green"
    >


    <TextView
        android:id="@+id/Title"
        android:layout_width="304dp"
        android:layout_height="50dp"
        android:layout_marginStart="50dp"
        android:layout_marginTop="20dp"
        android:layout_marginEnd="50dp"
        android:layout_marginBottom="20dp"
        android:linespacingExtra="8sp"
        android:textAlignment="center"
        android:textColor="#CCDEEE"
        android:textSize="24sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.571"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

    <TextView
        android:id="@+id/Snippet"
        android:layout_width="304dp"
        android:layout_height="50dp"
        android:layout_marginStart="50dp"
        android:layout_marginTop="90dp"
        android:layout_marginEnd="50dp"
        android:layout_marginBottom="20dp"
        android:linespacingExtra="8sp"
        android:textAlignment="center"
        android:textColor="#CCDEEE"
        android:textSize="24sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.571"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

    <TextView
        android:id="@+id/Position"
        android:layout_width="304dp"
        android:layout_height="70dp"
        android:layout_marginStart="50dp"
        android:layout_marginTop="160dp"
        android:layout_marginEnd="50dp"
        android:layout_marginBottom="60dp"
        android:linespacingExtra="8sp"
        android:textAlignment="center"
        android:textColor="#CCDEEE"
        android:textSize="24sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.571"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

</androidx.constraintlayout.widget.ConstraintLayout>

这是应用程序的图片,您可以明白我的意思:

https://imgur.com/u6MYYKW

解决方法

我想您正在使用 Android Jetpack 的导航组件,如果您没有使用,也许您应该考虑使用它。您可以查看 Android 开发团队的 Chet Haase 撰写的这篇出色的 video,其中对此进行了解释。

现在,转到您的问题的具体细节,如果您按照视频中的步骤进行操作,则可以使用我在下面代码中指出的两个选项中的任何一个:

package com.example.myapp

import ...

class MyBottomSheetDialog : BottomSheetDialogFragment() {

    override fun onCreateView(
        inflater: LayoutInflater,container: ViewGroup?,savedInstanceState: Bundle?
    ): View {

        //Option 1:
        dialog?.window?.setDimAmount(0F)
        
        //Option 2:
        dialog?.window?.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND)

        return inflater.inflate(R.layout.my_dialog,container,false)
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。