When my Activity with a ScrollView layout and EditTexts starts, the EditTexts get focus and the Android OnScreen keyboard opens.
ScrollView
EditText
If you want to do it editing the AndroidManifest:
the line android:windowSoftInputMode="stateHidden" is the one that prevents the keyboard focus.
android:windowSoftInputMode="stateHidden"