0

我正在开发一个类似于菜单的应用程序,并且带有选项的菜单的相对布局被另一个包含图像的相对布局覆盖。你们能告诉我我哪里出错了吗?实际上,我希望菜单位于顶部,选项位于中间,图像位于底部。

这是我的xml代码:

<RelativeLayout
    android:id="@+id/RelativeLayout02"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android >

    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="false"
        android:contentDescription="@string/desc"
        android:scaleType="fitEnd"
        android:src="@drawable/half" />

</RelativeLayout>

<RelativeLayout
    android:id="@+id/RelativeLayout01"
    android:layout_width="match_parent"
    android:layout_height="247dp" >



    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:contentDescription="@string/desc"
        android:src="@drawable/paranoid_android" />

    <TextView
        android:layout_width="200dp"
        android:layout_height="50dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_centerInParent="true"
        android:text="@string/menu"
        android:textColor="@color/white"
        android:textSize="@dimen/titlefont" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:contentDescription="@string/desc"
        android:src="@drawable/paranoid_android" />
</RelativeLayout>    

谢谢。

4

1 回答 1

0

只需将它们全部放在一个相对布局中 - 这就是相对布局的用途。在其余组件之前或之后添加图像,使其位于其下方或上方。相对布局的设计使得在其中移动一个视图不会影响布局中其他视图的定位,因此您可以将视图分层放置。

于 2012-08-17T15:32:57.667 回答