如何为edittext关闭android键盘弹出,但我需要在edittext下面的键盘

时间:2012-12-04 10:53:19

标签: android android-widget keyboard

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

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

它隐藏了弹出窗口。

2 个答案:

答案 0 :(得分:0)

您只需在android:windowSoftInputMode="adjustPan"课程的AndroidManifest中设置此参数Activity

答案 1 :(得分:0)

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

<activity android:windowSoftInputMode="adjustResize" />

<activity android:windowSoftInputMode="adjustPan" />
相关问题