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?

link|improve this question

53% accept rate
feedback

16 Answers

up vote 156 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"/>
link|improve this answer
1  
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
2  
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 at 10:49
show 3 more comments
feedback

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)

link|improve this answer
3  
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
20  
this is actually the better answer imo. – moonlightcheese Mar 16 '11 at 23:30
3  
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
1  
Thanks, this is the real answer – Mina Samy Jun 14 '11 at 11:05
7  
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
show 10 more comments
feedback

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();
link|improve this answer
7  
Excellent. This works and to me it is more elegant than the accepted answer. – BoD Jan 12 at 10:46
This is a less tedious way to handle the problem. Good job. – Creniale Jan 18 at 5:16
2  
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 at 20:20
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 at 15:09
feedback

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 :)

link|improve this answer
I don't know why I didn't think of this. Thanks. – toc777 Nov 20 '11 at 20:53
feedback

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();
}
link|improve this answer
feedback

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.

link|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
feedback

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

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).

link|improve this answer
feedback

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 :)

link|improve this answer
feedback

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...

link|improve this answer
feedback

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

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

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>
link|improve this answer
feedback

try

edit.setInputType(InputType.TYPE_NULL);

edit.setEnabled(false);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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