我不确定这是否可行,但我有一个自定义对话框,我想在其中添加一个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();
1条答案
按热度按时间mf98qq941#
您应该使用DialogFragment来实现此目的。请查看此here