键盘打开后滚动对话框

时间:2014-03-07 12:43:47

标签: android android-layout android-dialog android-keypad

我有一些EditText字段的对话框。当我想填充一些EditText键盘打开时我无法填充上面的某些字段。我应该关闭键盘并点击上面的EditText。如何在键盘打开时使对话框可滚动以避免关闭键盘?

2 个答案:

答案 0 :(得分:8)

尝试:

dialog.getWindow().setSoftInputMode(
    WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

答案 1 :(得分:1)

windowSoftInputMode添加到清单

中的活动
<activity
...
    android:windowSoftInputMode="stateHidden|adjustResize">