This question already has an answer here:
-
Stop EditText from gaining focus at Activity startup
48 answers
Everytime I open my android app, it automatically focuses the edittext box and the soft keyboard opens up. Is there a way to focus something else on start up so the keyboard doesnt show right away?
You can try:
android:windowSoftInputMode="stateHidden"
for your activity in AndroidManifest.xml
Add this two lines to you main layout.
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
Add in your layout definition (in xml file) this following options :
android:focusable="true" android:focusableInTouchMode="true"