我有一個RelativeLayout
與2 Button
s裏面。如何設置圖像RelativeLayout背景
一個Button
有layout_alignParentLeft="true"
財產和其他按鈕有layout_alignParentRight="true"
我想設置我的RelativeLayout的背景,顯示在中間的圖像。我有一個play.9.png
在我的繪製和使用下面的代碼:
<RelativeLayout
android:id="@+id/relativeLayout12"
android:layout_width="fill_parent"
android:layout_height="70dp"
android:background="@drawable/play" // background line
>
<Button
android:id="@+id/bAbout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="but1" />
<Button
android:id="@+id/bSync"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="but2" />
</RelativeLayout>
但是當我使用的背景線,我Button
小號想念自己的位置
見下
的形象,但我希望我的RelativeLayout
是這樣的:
什麼是錯的?
請問您可以上傳'play.9.png'圖片嗎?即使你的代碼對我來說工作正常 – sunil 2012-07-31 11:20:20