我需要键盘以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班级中设置此参数即可。