从后退按钮进入活动时再次打开软键盘
我在清单文件中使用 android:windowSoftInputMode="stateVisible|adjustPan"
在主活动启动时打开软键盘。
除了当我使用后退按钮从另一个活动返回主要活动时,这效果很好;软键盘不再出现。
返回主要活动时如何使软键盘出现?
感谢您提前提供的任何帮助。
I use android:windowSoftInputMode="stateVisible|adjustPan"
in my manifest file to open the softkeyboard when the main activity is launched.
This works great, apart from when i come back to the main activity from another using the back button; The softkeyboard does not reappear.
How do i make the softkeyboard appear when coming back to the main activity?
Thanks for any help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在后退按钮上,它只是从堆栈中删除当前活动并显示上一个活动,这就是软键盘未打开的原因。您可以重写 onKeyDown() 方法,并且在后退按钮上您可以再次调用您的活动。
On back button it just remove the current activity from the stack and show the previous activity that is why softkeyboard is not getting opened . you can override the onKeyDown() method and on back button you can call your activity again.