0

レイアウトに TextView が 1 つしかない場合でも、垂直線形レイアウトを常にスクロール可能にするにはどうすればよいですか?

  • 上にスクロールすると、スクロールして下部に空白が表示されるようにします。
  • 下にスクロールすると、ビューの上部に空白が表示されます。

これが私のコードです:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ScrollView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
             android:id="@+id/addCategory"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:text="Scrollable view"/>
    </LinearLayout>
</ScrollView>
4

1 に答える 1