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
?
Try this
BottomSheetDialog dialog = new BottomSheetDialog(YourActivity.this);
dialog.setContentView(YourView);
dialog.show();