键盘布局问题

发布于 2024-11-29 12:24:49 字数 142 浏览 0 评论 0原文

我的应用程序中有一个 Tablayout。在其中一个选项卡中有一个带有搜索的列表视图。当我想在搜索中写一些东西时,选项卡布局和布局是可见的。但当我在搜索框中输入内容时,我只想显示键盘而不是选项卡布局。当我关闭键盘时,选项卡布局应该再次显示。

感谢您的帮助

I've a Tablayout in my application. In one of the tablayout there is a listview with a search. When I want to write something in the search the tablayout is visible and the layout. But I only want to show the keyboard and not the tablayout when I write something in the search box. When I close the keyboard the tablayout should display again.

Thanks for Help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笑梦风尘 2024-12-06 12:24:49

据我了解,您会看到键盘下方的选项卡小部件,对吧?
要更改此行为,请将以下内容添加到清单中:

<activity android:name=".CustomTabActivity" android:windowSoftInputMode="stateHidden|adjustPan"

在这种情况下,选项卡小部件不会更改其位置,并且键盘会覆盖它。

As I understand you see the tab widget under the keyboard, right?
To change this behavior add the following to your manifest:

<activity android:name=".CustomTabActivity" android:windowSoftInputMode="stateHidden|adjustPan"

in this case the tab widget doesn't change its location and the keyboard covers it.

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