关于layout的缺欠

关于layout的短缺
我的窗口xml如下:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
    android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
android:layout_centerHorizontal="true"           
        android:text="@string/hello_world" />

    <RelativeLayout 
        android:id="@+id/layout" 
        android:layout_width="250sp"
        android:layout_height="350sp"
android:layout_centerHorizontal="true"           
        android:layout_below="@+id/textview" 
        android:background="#778899" >
        
        <ImageView
        android:id="@+id/magicpen"
        android:layout_width="wrap_content"
         android:layout_height="wrap_content"
android:layout_centerInParent="true"
        android:src="@drawable/magicpen"
        android:contentDescription="@string/desc" />"
        
    </RelativeLayout>
    
    <Button 
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true" 
        android:layout_below="@+id/layout" 
        android:text="@string/button1" />
        
    <Button 
        android:id="@+id/button3"