Android - 当键盘弹出时调整屏幕?
我希望能够在软键盘弹出时调整 Android 上的 UI 屏幕。
因此,目前我有类似于下面第一张图片的内容,屏幕底部有 EditText,当用户点击 EditText 时,我希望与第二张图片中发生的情况相同。
也就是说,EditText 向上移动并看起来“坐在”软键盘的顶部,当软键盘消失时,它应该返回到其之前的状态。
谁能让我知道处理和实施这个问题的最佳方法?
替代文本 http://img40.imageshack.us/img40/2300/keyboarddown.png
I want to be able to adjust my UI screen on Android when the soft keyboard pops up.
So at the minute I have something similiar to the first picture below where I have and EditText at the bottom of the screen and when a user taps the EditText I want the same as what happens in the second picture.
That is that the EditText gets moved up and appears to "sit" on top of the soft keyboard, when the soft keyboard dissapears it should then return to its prior state.
Can anyone let me know the best way to approach and implement this?
alt text http://img40.imageshack.us/img40/2300/keyboarddown.png
alt text http://img46.imageshack.us/img46/9339/keyboardup.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要将
android:windowSoftInputMode="adjustResize"
添加到 AndroidManifest.xml 文件中的标记中。You need to add
android:windowSoftInputMode="adjustResize"
to your tag in the AndroidManifest.xml file.看看 android:windowSoftInputMode
take a look at android:windowSoftInputMode
我按照rascalking的回复解决了这个问题。
相信我,它有效。
I solved this problem according rascalking's reply.
believe me it works.