Dialog Binding
final Dialog dialog = new Dialog(requireActivity());
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setCancelable(true);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
DueDateDialogLayoutBinding binding = DueDateDialogLayoutBinding.inflate(LayoutInflater.from(requireContext()));
dialog.setContentView(binding.getRoot());
dialog.show();