如何使我的整个BottomSheetDialog显示在键盘上方?

时间:2019-02-15 05:42:52

标签: android android-softkeyboard android-dialog bottom-sheet

我有一个BottomSheetDialog,只需单击一个按钮即可弹出。 Dialog包含一个EditText,并且在该EditText的焦点上,对话框仅平移到EditText,而隐藏其下方的“提交”按钮

The BottomSheetDialog

我的代码:

mBottomSheetDialog = new BottomSheetDialog(MyActivity.this);
sheetView = getLayoutInflater().inflate(R.layout.my_bottom_sheet, null);
mBottomSheetDialog.setContentView(myView);
mBottomSheetDialog.show();

我已经使用adjustPan进行过尝试,但这仅适用于EditText,而我希望将其提交到我的“提交”按钮

0 个答案:

没有答案