Automatic popping up keyboard on start Activity(启动 Activity 时自动弹出键盘)
问题描述
我有一个相对简单的问题.我有一个包含很多 EditText 的活动.当我打开活动时,它会自动聚焦到第一个 EditText 并显示虚拟键盘.
I got a relative simple question. I have an activity with a lot of EditText's in them. When I open the activity it automatically focusses to the first EditText and displays the virtual keyboard.
如何防止这种情况发生?
How can I prevent this?
推荐答案
在 XML 文件的布局标签中使用此属性:
Use this attributes in your layout tag in XML file:
android:focusable="true"
android:focusableInTouchMode="true"
正如其他成员在评论中报告的那样,它不适用于 ScrollView,因此您需要将这些属性添加到 ScrollView 的主要子项中.
As reported by other members in comments it doesn't works on ScrollView therefore you need to add these attributes to the main child of ScrollView.
这篇关于启动 Activity 时自动弹出键盘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:启动 Activity 时自动弹出键盘
- android 4中的android RadioButton问题 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
