表示画面に収まりきらないほど多くの項目があります。スクロール可能にしたいのですが、XMLがわかりません。以下のコードがあります
<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/scrollView1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Auto Settings"
android:textAppearance="?android:attr/textAppearanceLarge" />
//more items
</LinearLayout>
</ScrollView>
最初の線形レイアウトでエラーがスローされます。私は何を間違っていますか?