1주일째 이거 잡고 앓아 누웠습니다. 이렇게해도 아무런 변화가 없네요 ㅠㅠ

도대체 아래 구문에서 어디가 문제있는건지요...ㅠㅠ



<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
 

<TextView 

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:id="@+id/text"

    android:text="@string/hello"

    />

<ImageView
    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:id="@+id/image"

    android:layout_below="@id/text"

    android:src="@drawable/icon"

    android:scaleType="center"

    />

  <TextView

        android:id="@+id/entry"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:layout_below="@id/image"

        android:layout_marginLeft="10dip"

        android:text="Text"

    />

    <Button

        android:id="@+id/ok"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_below="@id/image"

        android:layout_alignRight="@id/entry"
        android:text="Button" />

</RelativeLayout>