ScrollView を適切にスクロールできません。通常の LinearLayout であるかのように、常に下部のコンテンツが切り取られます。
私のコード
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<LinearLayout android:id="@+id/scroll_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:isScrollContainer="true"
android:orientation="vertical" >
もちろん、「fillViewport」と「isScrollContainer」のプロパティを追加/削除しようとしましたが、何も変わりませんでした。
これは ScrollView 用です (垂直のみ)
水平スクロールには HorizontalScrollView を使用する必要があります。