如何自定义DialogFragment?

问题描述 投票:0回答:1

我尝试创建自定义DialogFragment。问题是它看起来不像我想要的那样。我创建了一个布局:

<?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="239dp"
    android:background="#00f">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/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"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

    </androidx.constraintlayout.widget.ConstraintLayout>

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

它看起来像这样:enter image description here

我创建了一个班级:

class AddPlaylistPopUp: DialogFragment(){

    override fun onCreateDialog(
        savedInstanceState: Bundle?
    ): Dialog {
        val builder = AlertDialog.Builder(context!!)
        builder.setView(R.layout.add_playlist_popup_layout)
        return builder.create()
    }
}

并且我这样显示:

fun openDialog(){
    val fm = fragmentManager!!
    val editNameDialogFragment = AddPlaylistPopUp()
    editNameDialogFragment.show(fm, "fragment_edit_name")
}

这是结果:

enter image description here

如您所见,弹出窗口看起来不像我创建的自定义布局...我究竟做错了什么?有不必要的侧边距,绿色视图更大,按钮在绿色视图内部。我尝试了很多事情,但没有任何效果。我如何使其外观看起来像我的布局100%?

android kotlin android-dialogfragment dialogfragment
1个回答
0
投票

我找到了解决方案。可以使用Dialog代替DialogFragment。

© www.soinside.com 2019 - 2024. All rights reserved.