0

我第一次使用RelativeLayout,并定位了两个按钮,如下所示:

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

    <ImageButton
        android:id="@+id/flybut"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="10dp"
        android:layout_centerVertical="true"
        android:background="#00000000"
        android:src="@drawable/flybut" />

    <ImageButton
        android:id="@+id/jumpbut"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/flybut"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="10dp"
        android:layout_marginBottom="10dp"
        android:background="#00000000"
        android:src="@drawable/jumpbut" />
</RelativeLayout>

因此,flybut 位于屏幕左侧 10dp 处,并且垂直位于屏幕中央。jumpbut 也位于屏幕左侧 10dp 处,flybut 上方 10dp 处。这一切在 Eclipse GUI 中看起来完全符合预期,但在运行时 jumpbut 位于错误的位置。它距离左侧正确 10dp,但它被卡在屏幕的最顶部。我做错什么了吗?

4

0 回答 0