如何在android的屏幕底部实现自定义对话框

Mit*_*mar 17 android android-alertdialog android-dialogfragment android-popupwindow

哪个组件我必须选择在底部实现自定义对话框,如下图所示?我应该选择alertdialog,popupwindow还是fragmentdialog? dialogAtBottom

ak *_*cha 56

试试这个

BottomSheetDialog对话框=新的BottomSheetDialog(YourActivity.this); dialog.setContentView(YourView);

dialog.show();

  • 有关一个很好的教程,请参阅:https://medium.com/glucosio-project/moving-from-dialogs-to-bottomsheetdialogs-on-android-15fb8d140295 (2认同)