How to keep cursor from going to editText field on activity start android

Guy1

New Member
I am having a problem with text edits. I suppressed the keyboard from poping up on activity start, but how do I keep the cursor from being on the first edit text? I want the cursor to appear only when the editText field is clicked and when the activity starts. \[code\]<EditText android:id="@+id/stuff" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/stufflabel" android:layout_toRightOf="@+id/stuffpic" android:hint="@string/name_str" android:maxLength="20" />\[/code\]
 
Back
Top