我需要键盘以EditText
使其与我的重叠EditText
,但我需要视图下方的键盘EditText
。
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
它隐藏了弹出窗口。
我需要键盘以EditText
使其与我的重叠EditText
,但我需要视图下方的键盘EditText
。
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
它隐藏了弹出窗口。
您将需要设置android:windowSoftInputMode
或android:windowSoftInputMode
为软键盘腾出空间而不隐藏 EditText
<activity android:windowSoftInputMode="adjustResize" />
或者
<activity android:windowSoftInputMode="adjustPan" />
android:windowSoftInputMode="adjustPan"
您只需要在您AndroidManifest
的Activity
班级中设置此参数即可。