如何阻止EditText专注于Android中的Activity启动


2870

Activity在Android中有两个元素:

  1. EditText
  2. ListView

当我Activity开始时,EditText立即具有输入焦点(光标闪烁)。我不希望任何控件在启动时就将焦点放在输入上。我试过了:

EditText.setSelected(false);
EditText.setFocusable(false);

没运气。我如何说服启动EditText时不要选择自己Activity

Answers:


2591

Luc和Mark的出色答案,但是缺少一个好的代码示例。添加标签android:focusableInTouchMode="true"android:focusable="true"父布局(例如LinearLayoutConstraintLayout类似于下面的示例)将解决这个问题。

<!-- 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"/>

711
父级布局设置为android:focusableInTouchMode="true"
穆罕默德·巴巴尔

28
完善!谢谢...要注意的一件事是,必须在可聚焦元素之前正确放置虚拟物品!!!我的虚拟人和EditText之间有一个TextView,该方法不起作用!
maddob

25
将@android
focusableInTouchMode

7
很棒的代码,对我有很大帮助:)要尝试对其进行改进,请android:focusableInTouchMode="true"覆盖android:focusable="true"+其他内容,因此在这种情况下android:focusable="true"是不必要的,可以将其删除。另外,虚拟视图可以是View而不是LinearLayout。这样可以节省处理能力,并且可以避免出现某些警告。因此,我的建议是将虚拟视图替换为<View android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/>
Jacob R

20
@PietroRea Android具有烦人的自动对焦行为,这些行为内置于其应用程序结构的核心行为中。如果您告诉它编辑文本正在释放或失去焦点,它将自动决定焦点在何处。没有焦点转移到的新对象,它会选择布局中的第一个可聚焦元素,即使该元素是刚刚清除焦点的元素也是如此!这有点疯狂和令人沮丧,但也许有这种行为的合理原因。
Weston Wedding

1674

您是否真的不希望集中注意力于实际问题?还是您不希望由于聚焦EditText?而显示虚拟键盘?我并没有真正看到EditText专注于开始的问题,但是当用户没有明确要求专注于EditText(并因此打开键盘)时,打开softInput窗口绝对是一个问题。

如果是虚拟键盘的问题,请参见AndroidManifest.xml <activity>元素文档。

android:windowSoftInputMode="stateHidden" -进入活动时始终将其隐藏。

android:windowSoftInputMode="stateUnchanged"-请勿更改(例如,如果尚未显示,则不显示它,但如果在进入活动时已打开,则将其保持打开状态)。


24
即使在键盘未显示的情况下,光标仍然位于布局的第一个EditText中
martyglaubitz 2014年

39
@安德森:答案没有任何暗示,它将阻止人们EditText获得关注。实际上,它清楚地表明,这是防止软件键盘IME聚焦自动打开的方式。因为更可能的问题是软键盘意外弹出,而不是焦点本身。如果您的问题是EditText根本没有重点,那么请使用其他人的答案。
2014年


3
不要在使用相机进行的活动中这样做-这样做会破坏闪光灯的定时(不要问我为什么)
Daniel Wilson

1
@Joe这个问题不是关于在启动时隐藏键盘。在这里问了这样的问题stackoverflow.com/questions/18977187/…–
user924

1140

存在一个更简单的解决方案。在父级布局中设置以下属性:

<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();

好评论纪尧姆·佩罗

android:descendantFocusability="beforeDescendants"似乎是默认值(整数值为0)。只需添加即可 android:focusableInTouchMode="true"

确实,我们可以beforeDescendantsViewGroup.initViewGroup()方法(Android 2.2.2)中看到该设置为默认设置。但不等于0。ViewGroup.FOCUS_BEFORE_DESCENDANTS = 0x20000;

多亏纪尧姆。


1
将这些属性设置为视图的直接父级非常重要,因为该视图将重点放在活动创建上,否则将无法正常工作。
tomrozb 2015年

4
只是一个完美的解决方案。适用于以下两种情况:1.禁用自动对焦,以及2.禁用软键盘的自动打开
遇到

真好 它不必是直接父母。我将其设置为布局的根目录级别,看起来工作正常。
Kurotsuki

@DanielWilson您何时希望将scrollview用作edittext的直接父级?
Mark Buikema


426

我发现的唯一解决方案是:

  • 创建一个LinearLayout(我不知道其他类型的Layout是否可以工作)
  • 设置属性android:focusable="true"android:focusableInTouchMode="true"

并且EditText开始活动后不会获得焦点


简单!!最初,我将这些属性添加到了父视图,但失败了,然后将它们设置为另一种布局,并且运行良好。谢谢!!
里诺

它也可以与ConstraintLayout一起使用。
Hawklike

85

问题似乎来自只能在XML form布局的中看到的属性。

确保在EditTextXML标签内的声明末尾删除此行:

<requestFocus />

那应该是这样的:

<EditText
   android:id="@+id/emailField"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:inputType="textEmailAddress">

   //<requestFocus /> /* <-- without this line */
</EditText>

77

根据其他海报提供的信息,我使用以下解决方案:

在布局XML中

<!-- Dummy item to prevent AutoCompleteTextView from receiving focus -->
<LinearLayout
    android:id="@+id/linearLayout_focus"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:layout_width="0px"
    android:layout_height="0px"/>

<!-- AUTOCOMPLETE -->
<AutoCompleteTextView
    android:id="@+id/autocomplete"
    android:layout_width="200dip"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dip"
    android:inputType="textNoSuggestions|textVisiblePassword"/>

在onCreate()中

private AutoCompleteTextView mAutoCompleteTextView;
private LinearLayout mLinearLayout;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mylayout);

    //get references to UI components
    mAutoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.autocomplete);
    mLinearLayout = (LinearLayout) findViewById(R.id.linearLayout_focus);
}

最后,在onResume()中

@Override
protected void onResume() {
    super.onResume();

    //do not give the editbox focus automatically when activity starts
    mAutoCompleteTextView.clearFocus();
    mLinearLayout.requestFocus();
}

73

尝试使用clearFocus()而不是setSelected(false)。Android中的每个视图都具有可聚焦性和可选择性,我认为您只是想清除焦点。


这听起来很有希望,但是应该在“活动”生命周期的什么时候调用它?如果我在onCreate()中调用它,则EditText仍然具有焦点。应该在onResume()或其他位置调用它吗?谢谢!
标记

8
我将接受的答案与此答案结合在一起。我myEditText.clearFocus(); myDummyLinearLayout.requestFocus();onResume活动中致电。这样可以确保旋转手机时EditText不会保持焦点。
teedyay

71

下面的内容将使编辑文本在创建时无法聚焦,但在触摸它们时将其抓住。

<EditText
    android:id="@+id/et_bonus_custom"
    android:focusable="false" />

因此,您在xml中将focusable设置为false,但关键是在Java中,您添加了以下侦听器:

etBonus.setOnTouchListener(new View.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        v.setFocusable(true);
        v.setFocusableInTouchMode(true);
        return false;
    }
});

因为您返回的是false,即不消耗事件,所以聚焦行为将像往常一样进行。


6
但这将永远不会成为焦点,如何仅在初始(活动开始)时停止焦点?
Jayesh

1
在其他触摸操作之前会先调用onTouchListener。因此,通过启用可集中于触摸的功能,标准焦点将发生在首次触摸上。键盘将随即出现。
MinceMan 2013年

1
我认为这是最好的方法。另外,上面的mumbo-jumbo xml魔术伪代码对一组复杂的编辑文本也不起作用...如果可行,我将明确投票。
Radu

但是,如果您有多个编辑文本,它将着重于下一个编辑文本并打开键盘,因此最好为特定活动在清单中添加android:windowSoftInputMode =“ stateAlwaysHidden”
卡兰·夏尔马

注意:在Android P上,系统将不再获取默认焦点。这意味着从P开始不必进行这种破解
。– MinceMan

65

我已经尝试了几个答案,但是重点仍然放在EditText上。我只能通过同时使用以下两个解决方案来解决该问题。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/mainLayout"
  android:descendantFocusability="beforeDescendants"
  android:focusableInTouchMode="true" >

(引用自Silver https://stackoverflow.com/a/8639921/15695

并删除

 <requestFocus />

在EditText

(参考来自floydaddict https://stackoverflow.com/a/9681809


1
除了上述内容之外,我还必须添加edittext.clearFocus()才能使其正常工作:)
Nav

57

最新但最简单的答案是,只需将其添加到XML的父级布局中即可。

android:focusable="true" 
android:focusableInTouchMode="true"

如果有帮助,请支持!快乐编码:)


2
对我来说效果很好。还有一点要注意的是,不要将这些行添加到滚动视图中。它无法在滚动视图中工作。但与线性布局完美配合。
卡尔思·斯里尼瓦桑

46

这些解决方案都不适合我。我解决自动对焦的方法是:

<activity android:name=".android.InviteFriendsActivity" android:windowSoftInputMode="adjustPan">
    <intent-filter >
    </intent-filter>
</activity>

2
android:manifest中的任何活动上的android:windowSoftInputMode =“ adjustPan”
rallat 2012年

43

简单的解决办法:在AndroidManifestActivity标签使用

android:windowSoftInputMode="stateAlwaysHidden"

6
严格来说,这不能解决问题。OP表示:“我不希望任何控件在启动时就将焦点放在输入上。” 您的解决方案只隐藏键盘,有一个细微的区别。
katzenhut 2014年

@katzenhut是的,这就是我关于这个答案的问题。专注于我的edittext会打开PlaceAutoComplete活动,因此此答案是不完整的
Zach

如果存在以下问题,则此答案将是完整的:我如何始终确保自己的活动始终不显示键盘。哪个不是。
Martin Marconcini

37

你可以只设置“可聚焦”“可聚焦在触摸模式”看重的第一个真正TextViewlayout。在当活动开始的这种方式TextView将被集中,但由于其性质,什么也看不到集中在屏幕上,当然,也会有没有键盘显示...


对我来说效果很好,只有我在活动中的最外层布局上设置了该值,而不是对第一个textview进行了设置
Maverick1st

36

以下对我有用Manifest。写,

<activity
android:name=".MyActivity"
android:windowSoftInputMode="stateAlwaysHidden"/>

1
这不会使文本字段失去焦点:它只是隐藏键盘。您仍然会得到提示,该提示已被挤出该字段,并且任何颜色状态选择器都将显示“ focused = true”状态。
A. Rager

31

我需要以编程方式清除所有领域的重点。我只是将以下两个语句添加到我的主布局定义中。

myLayout.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
myLayout.setFocusableInTouchMode(true);

而已。立即解决了我的问题。谢谢,西尔弗(Silver)为我指明了正确的方向。


28

添加文件android:windowSoftInputMode="stateAlwaysHidden"的活动标签Manifest.xml

资源


1
这不会使文本字段失去焦点:它只是隐藏键盘。您仍然会得到提示,该提示已被挤出该字段,并且任何颜色状态选择器都将显示“ focused = true”状态。
A. Rager

25

如果您对自己的活动有另一种看法,例如ListView,也可以执行以下操作:

ListView.requestFocus(); 

在你onResume()抓住焦点editText

我知道这个问题已经回答,但只是提供了一个对我有用的替代解决方案:)


22

在您的第一个可编辑字段之前尝试以下操作:

<TextView  
        android:id="@+id/dummyfocus" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:text="@string/foo"
        />

----

findViewById(R.id.dummyfocus).setFocusableInTouchMode(true);
findViewById(R.id.dummyfocus).requestFocus();

21

onCreate方法中添加以下内容:

this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

1
这不会使文本字段失去焦点:它只是隐藏键盘。您仍然会得到提示,该提示已被挤出该字段,并且任何颜色状态选择器都将显示“ focused = true”状态。
A. Rager

17

由于我不想使用与功能相关的东西来污染XML,因此我创建了这种方法,该方法“透明地”从第一个可聚焦的视图中窃取了焦点,然后确保在必要时将其自身删除!

public static View preventInitialFocus(final Activity activity)
{
    final ViewGroup content = (ViewGroup)activity.findViewById(android.R.id.content);
    final View root = content.getChildAt(0);
    if (root == null) return null;
    final View focusDummy = new View(activity);
    final View.OnFocusChangeListener onFocusChangeListener = new View.OnFocusChangeListener()
    {
        @Override
        public void onFocusChange(View view, boolean b)
        {
            view.setOnFocusChangeListener(null);
            content.removeView(focusDummy);
        }
    };
    focusDummy.setFocusable(true);
    focusDummy.setFocusableInTouchMode(true);
    content.addView(focusDummy, 0, new LinearLayout.LayoutParams(0, 0));
    if (root instanceof ViewGroup)
    {
        final ViewGroup _root = (ViewGroup)root;
        for (int i = 1, children = _root.getChildCount(); i < children; i++)
        {
            final View child = _root.getChildAt(i);
            if (child.isFocusable() || child.isFocusableInTouchMode())
            {
                child.setOnFocusChangeListener(onFocusChangeListener);
                break;
            }
        }
    }
    else if (root.isFocusable() || root.isFocusableInTouchMode())
        root.setOnFocusChangeListener(onFocusChangeListener);

    return focusDummy;
}

15

迟了,但可能有帮助。在创建布局的顶部的虚拟的EditText然后调用myDummyEditText.requestFocus()onCreate()

<EditText android:id="@+id/dummyEditTextFocus" 
android:layout_width="0px"
android:layout_height="0px" />

这似乎符合我的预期。无需处理配置更改,等等。对于具有冗长TextView(指令)的Activity,我需要这样做。


为什么不只使用根视图本身呢?
CJBS 2015年


13

是的,我做了同样的事情-创建一个“虚拟”线性布局,该布局得到了最初的关注。此外,我设置了“下一个”焦点ID,因此用户在滚动一次后便无法再对其进行焦点:

<LinearLayout 'dummy'>
<EditText et>

dummy.setNextFocusDownId(et.getId());

dummy.setNextFocusUpId(et.getId());

et.setNextFocusUpId(et.getId());

为了摆脱对视图的关注而进行的大量工作。

谢谢


12

对我来说,在所有设备上起作用的是:

    <!-- fake first focusable view, to allow stealing the focus to itself when clearing the focus from others -->

    <View
    android:layout_width="0px"
    android:layout_height="0px"
    android:focusable="true"
    android:focusableInTouchMode="true" />

只需将其作为有问题的聚焦视图之前的视图即可,仅此而已。


10

我做的最简单的事情是将焦点放在onCreate的另一个视图上:

    myView.setFocusableInTouchMode(true);
    myView.requestFocus();

这阻止了软键盘的出现,并且EditText中没有光标闪烁。


10

这是最完美,最简单的解决方案。我一直在我的应用程序中使用它。

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

这不会使文本字段失去焦点:它只是隐藏键盘。您仍然会得到提示,该提示已被挤出该字段,并且任何颜色状态选择器都将显示“ focused = true”状态。
A. Rager

9
<TextView
    android:id="@+id/TextView01"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:marqueeRepeatLimit="marquee_forever"
    android:focusable="true"
    android:focusableInTouchMode="true"
    style="@android:style/Widget.EditText"/>

8

将此代码写在您不想打开键盘ManifestActivity位置的文件中。

android:windowSoftInputMode="stateHidden"

清单文件:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.projectt"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="24" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
         <activity
            android:name=".Splash"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Login"
            **android:windowSoftInputMode="stateHidden"**
            android:label="@string/app_name" >
        </activity>

    </application>

</manifest>

2
这不会使文本字段失去焦点:它只是隐藏键盘。您仍然会得到提示,该提示已被挤出该字段,并且任何颜色状态选择器都将显示“ focused = true”状态。
A. Rager

7

onCreate“活动”结束时,只需clearFocus()在EditText元素上添加使用。例如,

edittext = (EditText) findViewById(R.id.edittext);
edittext.clearFocus();

如果要将焦点转移到另一个元素,请使用requestFocus()该元素。例如,

button = (Button) findViewById(R.id.button);
button.requestFocus();

6

当按下按钮时,我使用以下代码阻止EditText窃取焦点。

addButton.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        View focused = internalWrapper.getFocusedChild();
        focused.setVisibility(GONE);
        v.requestFocus();
        addPanel();
        focused.setVisibility(VISIBLE);
    }
});

基本上,隐藏编辑文本,然后再次显示它。这对我有用,因为EditText 不是视图中,因此无论是否显示都没有关系。

您可以尝试隐藏并连续显示它,以查看是否有助于使其失去焦点。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.