When my Activity with a ScrollView layout and EditTexts starts, the EditTexts get focus and the Android OnScreen keyboard opens.
ScrollView
EditText
This will an inappropriate behaviour
getWindow().setSoftInputMode( WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
but it will do it smoothly(do it in manifest for that activity)
manifest
android:windowSoftInputMode="stateHidden"