<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content">
 
  <TextView
  android:id="@+id/chulsoo"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginRight="20px"
  android:textSize="15pt"
  android:text="철수"
  />
  <TextView
  android:id="@+id/yonghee"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_below="@id/chulsoo"
  android:textSize="15pt"
  android:text="영희"
  />
 

</LinearLayout>


 

위에가 소스인데요. 제 컴퓨터에서 below코드를 똑같이 써도 안됩니다. 왜 그런 것일까요?