我試圖將RelativeLayout
放置在LinearLayout
以下,它嵌套在另一個LinearLayout
中,並且它不工作。在另一個LinearLayout中放置一個LinearLayout下的RelativeLayout
有什麼辦法可以做到嗎?
我需要保持設置權重的能力以及將佈局(具有某種透明背景)放置在另一佈局上方的能力。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/relative"
android:layout_width="wrap_content" android:layout_height="fill_parent" >
<LinearLayout android:layout_width="wrap_content" android:layout_height="fill_parent" android:gravity="center_horizontal" android:orientation="vertical" android:weightSum="800">
<LinearLayout android:layout_alignParentRight="true" android:layout_width="fill_parent" android:id="@+id/infoCanso" android:orientation="vertical" android:background="@drawable/black_glossy_bg_iphone" android:gravity="center_vertical|center_horizontal" android:layout_height="0dip" android:layout_weight="90">
</LinearLayout>
<LinearLayout android:id="@+id/albumBG" android:layout_width="wrap_content" android:layout_below="@+id/infoCanso" android:layout_height="0dip" android:layout_weight="482">
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout1" android:background="#80ffffff" android:layout_width="fill_parent" android:layout_height="0dip" android:layout_weight="90">
</LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:layout_height="0dip" android:id="@+id/LinearLayout01" android:layout_weight="100" android:background="#ffffff">
</LinearLayout>
</LinearLayout>
<RelativeLayout android:layout_width="fill_parent" android:layout_height="50dip" android:id="@+id/volumeBar" android:background="#80000000" android:gravity="center" android:layout_below="@+id/infoCanso">
</RelativeLayout>
</RelativeLayout>
不要試圖在你的XML使用盡可能多的佈局這不是好的設計,如果你想這樣的設計意味着試圖通過使用Android的使用RelativeLayout的本身:用於layout_below PROPERT你需要的視圖。 –
我已經使用RelativeLayouts完成了它,但是我需要使用LinearLayouts的layout_weight屬性.. 爲什麼使用LinearLayouts不好? – sergi
你有沒有遇到任何錯誤,或者它沒有按照你的期望工作? –