<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- Header aligned to top -->
<RelativeLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="50dip"
android:layout_alignParentTop="true"
android:background="@drawable/topbargreen"
android:gravity="center" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:background="@drawable/scrol"
android:gravity="center_vertical"
android:paddingLeft="5dip" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/lock" />
<TextView
android:id="@+id/textView१"
android:layout_width="100dp"
android:layout_height="48dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/centertext"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
<!-- Footer aligned to bottom -->
<!-- Content below header and above footer -->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="35dip"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/header"
android:background="@drawable/angle"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.15"
android:background="#ee6958"
android:text="Contacts"
android:textColor="#ffffff"
android:textSize="20dip"
android:textStyle="normal" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.01"
android:background="#ee6958"
android:textColor="#ffffff"
android:textStyle="normal"
android:textSize="20dip"
android:text="Map" />
</LinearLayout>
</RelativeLayout>
这是我的XML文件。我已经创建了一个标题和Android Drawable“topbargreen”,我在代码中引用它。我把它放在后台:http://snag.gy/WDr3F.jpg,但它看起来与此处显示的不一样:http://snag.gy/Gee59.jpg。我不知道应该如何使用元素“topbargreen”。现在我正在执行“fill_parent”和“topbargreen”的50度高度。如果你能帮我弄清楚如何得到我想要的结果,那将是非常有帮助的。