Android Fragments 将片段添加到自定义对话框布局

u7up0aaq  于 2022-11-24  发布在  Android
关注(0)|答案(1)|浏览(122)

我不确定这是否可行,但我有一个自定义对话框,我想在其中添加一个Fragment。这是我目前所拥有的全部内容:
版面配置:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragment_view"
        android:layout_width="match_parent"
        android:layout_height="65dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

编码:

View layout = getLayoutInflater().inflate(R.layout.custom_layout, null);

Dialog dialog = new Dialog(mActivity);
dialog.setContentView(layout);
dialog.show();

getSupportFragmentManager().beginTransaction()
        .add(R.id.fragment_view, new Fragment(), null)
        .commit();
mf98qq94

mf98qq941#

您应该使用DialogFragment来实现此目的。请查看此here

相关问题