我Activity在 Android 中有一个,有两个元素:
Activity
EditText
ListView
当我Activity开始时,EditText立即具有输入焦点(闪烁的光标)。我不希望任何控件在启动时具有输入焦点。我试过:
EditText.setSelected(false); EditText.setFocusable(false);
没有运气。我怎样才能说服开始EditText时不要选择自己Activity?
像下面的例子一样添加标签android:focusableInTouchMode="true"和android:focusable="true"父布局(例如LinearLayout或ConstraintLayout),将解决问题。
android:focusableInTouchMode="true"
android:focusable="true"
LinearLayout
ConstraintLayout
<!-- Dummy item to prevent AutoCompleteTextView from receiving focus --> <LinearLayout android:focusable="true" android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/> <!-- :nextFocusUp and :nextFocusLeft have been set to the id of this component to prevent the dummy from receiving focus again --> <AutoCompleteTextView android:id="@+id/autotext" android:layout_width="fill_parent" android:layout_height="wrap_content" android:nextFocusUp="@id/autotext" android:nextFocusLeft="@id/autotext"/>
实际问题是您根本不希望它有焦点吗?或者您不希望它因为专注于EditText? 我真的没有看到将EditText注意力集中在开始上的问题,但是当用户没有明确请求关注EditText(并因此打开键盘)时,打开 softInput 窗口绝对是一个问题。
如果是虚拟键盘的问题,请参阅AndroidManifest.xml 元素文档。
AndroidManifest.xml
android:windowSoftInputMode="stateHidden" - 进入活动时始终隐藏它。
android:windowSoftInputMode="stateHidden"
或android:windowSoftInputMode="stateUnchanged"- 不要更改它(例如,如果它尚未显示,则不要显示它,但如果在进入活动时它是打开的,则让它保持打开状态)。
android:windowSoftInputMode="stateUnchanged"
存在一个更简单的解决方案。在您的父布局中设置这些属性:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mainLayout" android:descendantFocusability="beforeDescendants" android:focusableInTouchMode="true" >
现在,当活动启动时,这个主布局将默认获得焦点。
此外,我们可以在运行时(例如,在完成子编辑之后)将焦点从子视图中移除,方法是再次将焦点赋予主布局,如下所示:
findViewById(R.id.mainLayout).requestFocus();
Guillaume Perrot的好评:
android:descendantFocusability="beforeDescendants"似乎是默认值(整数值为 0)。它只需添加 android:focusableInTouchMode="true".
android:descendantFocusability="beforeDescendants"
真的,我们可以看到beforeDescendants在方法中设置为默认值ViewGroup.initViewGroup()(Android 2.2.2)。但不等于0。ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;
beforeDescendants
ViewGroup.initViewGroup()
ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;