Keep the activity settings you posted, in particular:
android:windowSoftInputMode="stateVisible|adjustResize"
Try wrapping a ScrollView around the layout containing the EditText. The top of the ScrollView will need to be higher than the top of the SoftKeyboard. I tested this with many EditTexts in a vertical LinearLayout and found that when the soft keyboard opens, the ScrollView is resized to the visible screen and scrolls as the focus changes to the next EditText. Also know that ScrollViews within ScrollViews will cause problems. Hope this helps.
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:orientation="vertical"
>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
<EditText
android:layout_width="192dp"
android:layout_height="wrap_content"
android:inputType="textShortMessage"
android:imeOptions="actionNext|flagNoEnterAction"
android:maxLines="1"
android:maxLength="64"
/>
</LinearLayout>
</ScrollView>
EDIT: Clarified ScrollView position.