I am trying to show a custom dialog from a fragment. When it is about to be displayed the screen gets darker, but no dialog is presented. I also tried to show it from the activity containing the fragment, but I get the same result.
Here is the layout for my dialog:
<?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"
    android:layout_width="match_parent"
    android:layout_height="239dp"
    android:background="#00f"
    >
    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="210dp"
        android:layout_marginStart="20dp"
        android:layout_marginLeft="20dp"
        android:layout_marginEnd="20dp"
        android:layout_marginRight="20dp"
        android:background="@drawable/pop_up_shape"
        android:backgroundTint="#00ff00"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        >
    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
This is my dialog fragment class:
class AddPlaylistPopUp: DialogFragment(){
    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.add_playlist_popup_layout, container, true)
    }
}
and this is the method that should open the dialog in the activity:
   fun testBut(view: View) {
        val fm: FragmentManager = supportFragmentManager
        val editNameDialogFragment = AddPlaylistPopUp()
        editNameDialogFragment.show(fm, "fragment_edit_name")
    }
in the fragment I tried like this:
  fun openDialog(){
        val fm = fragmentManager!!
        val editNameDialogFragment = AddPlaylistPopUp()
        editNameDialogFragment.show(fm, "fragment_edit_name")
    }
This is the guide I followed: https://guides.codepath.com/android/Using-DialogFragment#passing-data-to-parent-fragment
 
    