英文:
How to keep original layout when click show softkey in android
问题
点击“编辑文本”后显示软键盘,底部布局移动了。我想在 Android 上点击显示键盘后保持原始布局。
英文:
After I click edit text to show soft key, layout banner at bottom position layout moved up.
I want to keep origin layout after click show key board in android
答案1
得分: 0
将此属性添加到您的AndroidManifest.xml文件中的Activity中:
android:windowSoftInputMode="adjustPan"
就像下面这样:
<activity
android:name=".MainActivity"
android:exported="true"
android:windowSoftInputMode="adjustPan">
英文:
add this attribute to your Activity in AndoridManifest.xml
android:windowSoftInputMode="adjustPan"
Just like below:
<activity
android:name=".MainActivity"
android:exported="true"
android:windowSoftInputMode="adjustPan"
>
答案2
得分: 0
在你的清单文件中添加android:windowSoftInputMode="adjustPan"
或android:windowSoftInputMode="adjustResize"
。
你可以选择其中一个,根据你的活动布局来选择最合适的选项。
要了解更多详情,你可以参考这个答案。adjustPan或adjustResize
如果这个答案解决了你的问题或在找到解决方案方面最有帮助,请接受这个答案。
英文:
add android:windowSoftInputMode="adjustPan"
or android:windowsSoftInputMode="adjustResize"
in you manifest file.
You can choose one of them which is most preferable to your activity layout.
For more details you can refer this answer. adjustPan or adjustResize
Please accept this answer if it solved your problem or was the most helpful in finding your solution.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论