我需要EditText
的键盘与EditText
重叠,但我需要EditText
视图下方的键盘。
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
它隐藏了弹出窗口。
答案 0 :(得分:0)
您只需在android:windowSoftInputMode="adjustPan"
课程的AndroidManifest
中设置此参数Activity
。
答案 1 :(得分:0)
您需要设置android:windowSoftInputMode
或android:windowSoftInputMode
以便为软键盘腾出空间而不隐藏EditText
<activity android:windowSoftInputMode="adjustResize" />
或
<activity android:windowSoftInputMode="adjustPan" />