Android - 当键盘弹出时调整屏幕?

发布于 2024-08-27 12:13:28 字数 489 浏览 4 评论 0原文

我希望能够在软键盘弹出时调整 Android 上的 UI 屏幕。

因此,目前我有类似于下面第一张图片的内容,屏幕底部有 EditText,当用户点击 EditText 时,我希望与第二张图片中发生的情况相同。

也就是说,EditText 向上移动并看起来“坐在”软键盘的顶部,当软键盘消失时,它应该返回到其之前的状态。

谁能让我知道处理和实施这个问题的最佳方法?

替代文本 http://img40.imageshack.us/img40/2300/keyboarddown.png


替代文本http://img46.imageshack.us/img46/9339/keyboardup.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

垂暮老矣 2024-09-03 12:13:28

您需要将 android:windowSoftInputMode="adjustResize" 添加到 AndroidManifest.xml 文件中的标记中。

You need to add android:windowSoftInputMode="adjustResize" to your tag in the AndroidManifest.xml file.

豆芽 2024-09-03 12:13:28

我按照rascalking的回复解决了这个问题。

Dialog dialog = new Dialog(context);
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
dialog.setContentView(R.layout.pop_window_service);
WebView webview = (WebView) dialog.findViewById(R.id.pop_webview);
webview.loadUrl(url);

相信我,它有效。

I solved this problem according rascalking's reply.

Dialog dialog = new Dialog(context);
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
dialog.setContentView(R.layout.pop_window_service);
WebView webview = (WebView) dialog.findViewById(R.id.pop_webview);
webview.loadUrl(url);

believe me it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文