无法让键盘加载 onCreate()
我的目标是在应用程序加载后立即打开键盘。使用此代码,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下行添加到 AndroidManifest.xml 中的活动中
Add the following line to the activity in AndroidManifest.xml