android – 在AlertDialog中重用片段

我有一个片段(xml和类)提供某种功能,充当一个具有大量逻辑的特殊值选择器.

此片段在此处使用(在使用< fragment />的布局文件中),现在我想将其显示为对话框,并允许用户从那里选择一个值.

这可能是微不足道的,但经过数小时的搜索后我还没有找到答案.

我一直在玩DialogFragment,但我找不到在其中重用它的方法.我唯一能做的就是仅扩充布局并将其显示为对话框,由于缺少选择器逻辑,因此不接受该对话框.

注意:如果有任何不同,我正在使用appCompat

最佳答案 您可以将当前片段更改为DialogFragment. DialogFragments可以嵌入或显示为对话框,如
documentation中所述.

A DialogFragment can still optionally be used as a normal fragment, if
desired. This is useful if you have a fragment that in some cases
should be shown as a dialog and others embedded in a larger UI. This
behavior will normally be automatically selected for you based on how
you are using the fragment, but can be customized with
setShowsDialog(boolean).

点赞