每次我打开我的 android 应用程序时,它都会自动聚焦EditText
框并打开软键盘。有没有办法将其他东西集中在启动上,这样键盘就不会立即显示?
问问题
2274 次
3 回答
12
你可以试试:
android:windowSoftInputMode="stateHidden"
为您在 AndroidManifest.xml 中的活动
于 2012-07-18T13:49:49.913 回答
6
将这两行添加到您的主布局中。
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
于 2012-07-18T13:43:11.083 回答
3
添加您的布局定义(在 xml 文件中)以下选项:
android:focusable="true" android:focusableInTouchMode="true"
于 2012-07-18T13:43:48.590 回答