ScrollView には editText がほとんどありません。多くのeditTextsがあり、それらがディスプレイを超えている場合、すべて正常に機能しますが、そうでない場合、ソフトキーボードが開いている場合、スクロールできません(キーボードはそれらのいくつかをカバーしています)。私のレイアウト:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
/>
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
/>
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
/>
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
/>
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
/>
</LinearLayout>
</ScrollView>
助言がありますか?