0

我需要键盘以EditText使其与我的重叠EditText,但我需要视图下方的键盘EditText

    EDIT:
    finally i got the answer for this. we need to set 
      android:imeOptions="flagNoExtractUi" in `edittext`

它隐藏了弹出窗口。

4

2 回答 2

0

您将需要设置android:windowSoftInputModeandroid:windowSoftInputMode为软键盘腾出空间而不隐藏 EditText

<activity android:windowSoftInputMode="adjustResize" />

或者

<activity android:windowSoftInputMode="adjustPan" />
于 2012-12-04T11:01:18.350 回答
0

android:windowSoftInputMode="adjustPan"您只需要在您AndroidManifestActivity班级中设置此参数即可。

于 2012-12-04T10:59:01.470 回答