无法让键盘加载 onCreate()

发布于 2024-10-12 20:40:10 字数 269 浏览 2 评论 0原文

我的目标是在应用程序加载后立即打开键盘。使用此代码,

InputMethodManager inputMgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
                  inputMgr.toggleSoftInput(0, 0);`

在按钮上,我可以在按下按钮时加载键盘。然而,当放置在覆盖 onCreate() 部分时,什么也没有发生。

My aim is to get the keyboard to open as soon as the app is loaded. Using this code,

InputMethodManager inputMgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
                  inputMgr.toggleSoftInput(0, 0);`

on a button, I can get the keyboard to load when the button is pressed. However, when placed in the override onCreate() section, nothing happens.

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

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

发布评论

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

评论(1

茶色山野 2024-10-19 20:40:10

将以下行添加到 AndroidManifest.xml 中的活动中

android:windowSoftInputMode="stateVisible|adjustPan"

Add the following line to the activity in AndroidManifest.xml

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