Search code examples
androidandroid-alertdialogandroid-dialogfragmentandroid-popupwindow

How to achieve custom dialog at the bottom of the screen in Android


Which component do I choose to achieve custom dialog at the bottom as shown in the below image? Shall I choose alertdialog,popupwindow, or fragmentdialog?

dialogAtBottom


Solution

  • Try this

    BottomSheetDialog dialog = new BottomSheetDialog(YourActivity.this);
    dialog.setContentView(YourView);
    
    dialog.show();