Stop EditText from gaining focus at Activity startup
I have an
Activity in Android, with two elements:EditTextListView
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?<!-- Dummy item to prevent AutoCompleteTextView from receiving focus --><LinearLayoutandroid:focusable="true"android:focusableInTouchMode="true"android:layout_width="0px"android:layout_height="0px"/><!-- :nextFocusUp and :nextFocusLeft have been set to the id of this componentto 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"/>
Comments
Post a Comment