我在 Android 中有一个Activity
,有两个元素:
EditText
ListView
当我的Activity
启动时, EditText
立即具有输入焦点(闪烁光标)。我不希望任何控件在启动时具有输入焦点。我试过了:
EditText.setSelected(false);
没有运气。如何在Activity
开始时说服EditText
不选择自己?
Luc 和 Mark 的优秀答案却缺少一个好的代码示例。将标记android:focusableInTouchMode="true"
到<LinearLayout>
,如下例所示将解决问题。
<!-- 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
关注 start 的问题,但是当用户没有明确请求关注EditText
(并因此打开键盘)时,打开 softInput 窗口肯定是个问题。
如果是虚拟键盘的问题,请参阅AndroidManifest.xml
android:windowSoftInputMode="stateHidden"
- 在输入活动时始终隐藏它。
或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"
。
实际上,我们可以看到beforeDescendants
在ViewGroup.initViewGroup()
方法(Android 2.2.2)中设置为默认值。但不等于 0. ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;
感谢纪尧姆。