이렇게 하면 에러가나서 안되네용 ㅜㅜㅜㅜㅜ

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >
 <ScrollView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  >
 <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
 >   
  <TextView
   android:layout_width="40dp"
   android:layout_height="wrap_content"
   android:text="순번"
   android:textSize="20dp"
   android:gravity="center"
  />
  <TextView
   android:layout_width="60dp"
   android:layout_height="wrap_content"
   android:text="성 명"
   android:textSize="20dp"
   android:gravity="center"
  />
  <TextView
   android:layout_width="20dp"
   android:layout_height="wrap_content"
   android:text="-"
   android:textSize="20dp"
   android:gravity="center"
  />
  <TextView
   android:layout_width="120dp"
   android:layout_height="wrap_content"
   android:text="입금액"
   android:textSize="20dp"
   android:gravity="center"
  />
  <TextView
   android:layout_width="100dp"
   android:layout_height="wrap_content"
   android:text="구분정보"
   android:textSize="20dp"
   android:gravity="center"
  />
 </LinearLayout>
  <LinearLayout
   android:orientation="vertical"
   android:layout_width="fill_parent"
   android:layout_height="240dp"
  >
 </LinearLayout>
 </ScrollView>
 
 <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
 >
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="성명"
   android:textSize="20dp"
  />
  <TextView
   android:id="@+id/InputOutName"
   android:layout_width="145dp"
   android:layout_height="wrap_content"
  />
  <Button
   android:id="@+id/InputFind"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="찾기"
   android:textSize="20dp"
   android:paddingRight="15dp"
   android:paddingLeft="15dp"
  />
  <Button
   android:id="@+id/InputJibgye"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="집계"
   android:textSize="20dp"
   android:paddingRight="15dp"
   android:paddingLeft="15dp"
  />
 </LinearLayout>
 <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
 >
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="계좌"
   android:textSize="20dp"
  />
  <TextView
   android:id="@+id/InputGeyja"
   android:layout_width="180dp"
   android:layout_height="wrap_content"
   android:textSize="20dp"
  />
  <TextView
   android:id="@+id/InputMoney"
   android:layout_width="100dp"
   android:layout_height="wrap_content"
   android:gravity="center"
   android:textSize="20dp"
   android:background="#fff000"
  />
 </LinearLayout>
 <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
 >
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="입금"
   android:textSize="20dp"
  />
  <EditText
   android:id="@+id/InputMoney"
   android:layout_width="150dp"
   android:layout_height="wrap_content"
   android:textSize="20dp"
   android:inputType="number"
  />
  <CheckBox
   android:id="@+id/InputCheck"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_marginRight="14dp"
   android:layout_marginLeft="14dp"
  />
  <Button
   android:id="@+id/InputBtn"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="입 금"
   android:textSize="20dp"
  />
 </LinearLayout>
 <LinearLayout
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
 >
  <Button
   android:id="@+id/InputAccept"
   android:layout_width="160dp"
   android:layout_height="wrap_content"
   android:text="등 록"
  />
  <Button
   android:id="@+id/InputExit"
   android:layout_width="160dp"
   android:layout_height="wrap_content"
   android:text="종 료"
  />
 </LinearLayout>
</RelativeLayout>