Show soft keyboard when Activity starts(Activity 启动时显示软键盘)
问题描述
我有 2 个活动,A 和 B.当 A 启动时,它会检查一个条件,如果为真,它会调用 startActivityForResult()
来启动 B.B 只接受文本输入,所以这是有意义的B启动时软键盘自动弹出.当活动开始时,EditText 已经有了焦点并准备好输入.
I have 2 activities, A and B. When A starts, it checks for a condition and if true, it calls startActivityForResult()
to start B. B only takes text input so it makes sense for the soft keyboard to automatically pop up when B start. When the activity starts, the EditText already has focus and it ready for input.
问题是键盘永远不会出现,即使在清单中为 B 的 <activity>
标记下设置了 windowSoftInputMode="stateAlwaysVisible"
.我也尝试将值设置为 stateVisible
.由于它不会自动显示,我必须点击 EditText 以使其显示.
The problem is that the keyboard never shows up, even with windowSoftInputMode="stateAlwaysVisible"
set in the manifest under the <activity>
tag for B. I also tried with the value set to stateVisible
. Since it doesn't show up automatically, I have to tap the EditText to make it show.
有人知道解决办法是什么吗?
Anyone know what the solution might be?
推荐答案
最适合我的是在 Android Manifest 中添加活动 B
What worked best for me is in Android Manifest for activity B adding
android:windowSoftInputMode="stateVisible"
希望对你也有帮助.
这篇关于Activity 启动时显示软键盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Activity 启动时显示软键盘
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01