Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Android Activity, with two elements:

  1. EditText
  2. ListView

When my Activity starts, the EditText immediately has input focus (flashing cursor). I don't want any control to have input focus at startup. I tried:

EditText.setSelected(false);

No luck. How can I convince the EditText to not select itself when the Activity starts?

share|improve this question
9  
Before you use any of the upvoted hacks below, check if you don't have the <requestFocus /> line in your XML layout (more details in @floydaddict's answer). Eclipse's WYSIWYG editor adds it automatically. After removing this line, the problem disappeared for me. – DzinX Jun 15 '12 at 10:31
9  
The best answer is to set it in the manifest as shown below by Joe. Others are hacks and not recommended. – Prakash Nadar Jul 4 '12 at 19:18

23 Answers

up vote 296 down vote accepted

Excellent answers from Luc and Mark however a good code sample is missing:

<!-- 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"/>
share|improve this answer
2  
This only works so far. If you are building a widget, you can't use the nextFocusUp hack, as you'll kill your ability to focus things above the widget. There's got to be some sort of initial focus resolution that takes place, as buttons won't get the initial focus, but an EditText will. – Steve Pomeroy Nov 11 '09 at 20:24
1  
Setting the focusable and focusableIntouch to true worked for me. Thanks a lot to everyone for sharing, It'd of take me ages to discover this ¿bug? ¿weird feature? – Maragues Jun 21 '10 at 15:19
4  
In case it helps anyone, this solution wasn't working for me until I put the dummy at the very top of the xml layout (still within the root element) – littleFluffyKitty Nov 11 '10 at 19:53
1  
This worked for me. Though I didn't create dummy item, just put my first linear layout to focusable and focusableInTouchMode – Waltsu Dec 29 '11 at 7:38
17  
This works, but look at the solution below by @Silver (stackoverflow.com/a/8639921/15695), it works too and is simpler / more elegant. – BoD Jan 12 '12 at 10:49
show 8 more comments

Is the actual problem that you just don't want it to have focus at all? Or you don't want it to show the virtual keyboard as a result of focusing the EditText? I don't really see an issue with the EditText having focus on start, but it's definitely a problem to have the softInput window open when the user did not explicitly request to focus on the EditText (and open the keyboard as a result)

If it's the problem of the virtual keyboard, see the AndroidManifest.xml <activity> element documentation.

android:windowSoftInputMode="stateHidden" - always hide it when entering the activity

or android:windowSoftInputMode="stateUnchanged" - don't change it (e.g., don't show it if it isn't already shown, but if it was open when entering the activity, leave it open)

share|improve this answer
11  
I realize this doesn't answer the specific question, but it's a very similar case and it answered my own question. Personally I sprinkled this across most of my Activities. Popping open the keyboard and squishing the view immediately is bad UI design. The user needs context for what they're looking at before editing. – DougW Sep 16 '10 at 0:33
57  
this is actually the better answer imo. – moonlightcheese Mar 16 '11 at 23:30
6  
This is a much-much better answer - this is the proper way to fix this problem, and not the hacky accepted solution. – Artem Russakovskii Mar 30 '11 at 21:39
24  
Thank you! In case anyone want to do "android:windowSoftInputMode="stateHidden" programatically (via Java Code) integrate this call in the onCreate method of ur Activity: getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN)‌​; – Ready4Android Sep 20 '11 at 8:58
3  
@Waltsu: The answer was hypothetical, drawing conclusions based on context of the question, when those details were originally excluded. Judging by the score, a lot of people find those conclusions to be relevant. I'm sorry it doesn't solve your case, but that may be something that should be solved by a UI/UX designer instead? The reason EditText "steals" focus is because it's one of the few views that accepts focus while in Touch Mode, and most of the time you're already in touch mode when starting an Activity. – Joe Jan 9 '12 at 16:49
show 18 more comments

Exist more simple solution. Set in your parent layout next attributes:

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

And now, when activity starts this layout getting default focus.

Also we can remove focus from children views in runtime (e.g. after finishing child editing):

findViewById(R.id.mainLayout).requestFocus();
share|improve this answer
22  
Excellent. This works and to me it is more elegant than the accepted answer. – BoD Jan 12 '12 at 10:46
This is a less tedious way to handle the problem. Good job. – Creniale Jan 18 '12 at 5:16
6  
Thanks guys. Indeed, as I found this very flavorful solution, that I wanted to share with all. I had to register in stackoverflow... :) – Silver Jan 18 '12 at 20:20
2  
Brilliant ! Just want to add : You need to add both descendantFocusability and focusableInTouchMode attributes to the first focusable parent of the object you don't want focused. LinearLayout or RelativeLayout are focusable so will steal focus. – Yahel Jan 23 '12 at 15:09
Nice Job! I love the solution! Worked very well for me! – Chillie Jun 5 '12 at 14:03
show 5 more comments

I have the same problem. Tested the same - clearFocus() - without any result. Some solution? Thanks :)

Edit!! The only solution I've found after the whole day is:

  • Create a LinearLayout (I dunno if other kinds of Layout's will work)
  • Set the attributes android:focusable="true" and android:focusableInTouchMode="true"

And the &%$#~ EditText won't get the main focus after starting activity :)

share|improve this answer
I don't know why I didn't think of this. Thanks. – toc777 Nov 20 '11 at 20:53
Awesome. This worked for me, having a problem with reusable custom controls with same ids in the layout! Thx! – XMight Oct 24 '12 at 11:44
It's because your EditText is the only focusable element, otherwise. Thus it must get the focus. – Marco W. Jan 6 at 0:59
This worked for me. This is the most simply solution to this problem. – Ceetn Mar 26 at 10:07
1  
this worked for me – Vivek Kumar Srivastava Apr 30 at 11:29

Try clearFocus() instead of setSelected(false). Every view in Android has both focusability and selectability, and I think you want to just clear the focus.

share|improve this answer
That sounds promising, but at what point in the Activity lifecycle should it be called? If I call it in onCreate(), the EditText still has focus. Should it be called in onResume() or some other location? Thanks! – Mark Oct 12 '09 at 23:36
I combined the accepted answer with this answer. I called myEditText.clearFocus(); myDummyLinearLayout.requestFocus(); in the onResume of the Activity. This ensured the EditText didn't keep the focus when the phone was rotated. – teedyay Oct 14 '10 at 21:02

The problem seems to come from a property that I can only see in the XML form of the layout.

Make sure to remove this line at the end of the declaration of the EditText :

<requestFocus />

That should give something like that :

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

   //<requestFocus /> /* <-- without this line */
</EditText>
share|improve this answer
Bravo! I noticed that Eclipses' WYSIWYG editor adds this line automatically. Removing it worked like a charm, thanks! – DzinX Jun 15 '12 at 10:32
1  
This appears to be the best solution in most cases. Would be nice if it was more visible. Thanks @DzinX for the comment pointing this out. – Aaron Dufour Jun 19 '12 at 15:46
Of course, the way to just not have this issue is to just use XML instead of the graphical editor. The graphical editor isn't worth crap and certainly can't be considered in the same league as Apple's interface builder for iOS / OS X. Upvoting Joe for pointing out a real solution for whether you're using graphical or XML. – ArtOfWarfare Sep 18 '12 at 19:37
not working in ics simulator – Yogesh Maheshwari Nov 26 '12 at 7:32

using the information provided by other posters, I used the following solution:

in the layout 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"/>

in 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);
}

and finally, in onResume()

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

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

Try this before your first editable field:

<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();
share|improve this answer

I had tried serval answer individually but the focus is still at the EditText. I only manage to solve it by using two of the above solution together.

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

( Reference from Silver http://stackoverflow.com/a/8639921/15695 )

and remove

 <requestFocus />

at EditText

( Reference from floydaddict http://stackoverflow.com/a/9681809 )

share|improve this answer

You can just set "focusable" and "focusable in touch mode" to value true on the first TextView of the layout. In this way when the activity starts the TextView will be focused but , due to its nature, you will see nothing focused on the screen and ,of course, there will be no keyboard displayed...

share|improve this answer

None of this solutions worked for me. The way I fix the autofocus was:

<activity android:name=".android.InviteFriendsActivity" android:windowSoftInputMode="adjustPan">
    <intent-filter >
    </intent-filter>
</activity>
share|improve this answer
android:windowSoftInputMode="adjustPan" on any activity in the Android Manifest – rallat Jun 7 '12 at 8:33

If you have another view on your activity like a ListView, you can also do:

ListView.requestFocus();

in your onResume() to grab focus from the editText.

I know this question has been answered but just providing an alternative solution that worked for me :)

share|improve this answer

Yeah I did the same thing - create a 'dummy' linear layout which gets initial focus. Furthermore, I set the 'next' focus IDs so the user can't focus it any more after scrolling once:

dummy.setNextFocusDownId(et.getId()); dummy.setNextFocusUpId(et.getId()); et.setNextFocusUpId(et.getId());

a lot of work just to get rid of focus on a view..

Thanks

share|improve this answer
<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"/>
share|improve this answer

I needed to clear focus from all fields programmatically. I just added the following two statements to my main layout definition.

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

That's it. Fixed my problem instantly. Thanks, Silver, for pointing me in the right direction.

share|improve this answer

Late, but maybe helpful. Create a dummy EditText at the top of your layout then call myDummyEditText.requestFocus() in onCreate()

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

That seems to behave as I expect. No need to handle configuration changes, etc. I needed this for an Activity with a lengthy TextView (instructions).

share|improve this answer

I use the following code to stop an EditText from stealing the focus when my button is pressed.

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

Basicly, hide the edit text and then show it again. This works for me as the EditText is not in view so it doesn't matter whether it is showing.

You could try hiding and showing it in succession to see if that helps it lose focus.

share|improve this answer

The following will stop edittext from taking focus when created but grab it when you touch them.

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

So you set focusable to false in xml but the key is in the java, which you add the following listener:

etBonus.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            etBonus.setFocusable(true);
            etBonus.setFocusableInTouchMode(true);
            return false;
        }
    });
share|improve this answer
But this will never gain focus in future, how to just stop focus only for initial(activity start) ?? – Jayesh Mar 8 at 7:46
The onTouchListener is called before other touch actions. So by enabling focusable on touch the standard focus happens on the first touch. The keyboard will come up and everything. – MinceMan Mar 9 at 16:36

The simplest thing I did is to set focus on another view in onCreate:

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

This stopped the soft keyboard coming up and there was no cursor flashing in the EditText.

share|improve this answer

Being that I don't like to pollute the XML with something that is related to functionality, I created this method that "transparently" steals the focus from the first focusable view and then makes sure to remove itself when necessary!

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;
}
share|improve this answer

try

edit.setInputType(InputType.TYPE_NULL);

edit.setEnabled(false);
share|improve this answer

At onCreate of your Activity, just add use clearFocus() on your EditText element. For example,

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

And if you want to divert the focus to another element, use requestFocus() on that. For example,

button = (Button) findViewById(R.id.button);
button.requestFocus();
share|improve this answer
edit.setVisibility(View.Gone);
share|improve this answer
1  
this will hide the edittext and not remove the cursor. – Swapnil Feb 13 at 9:58

protected by Community yesterday

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.