SetWidht match_parent的一半

时间:2015-03-30 15:42:22

标签: android width relativelayout

我需要我的相对布局总是有一半match_parent Width,我该怎么做?

<RelativeLayout android:id="@+id/new_post_nsfw_button" android:layout_width="match_parent" android:layout_height="46dp" android:layout_alignRight="@+id/new_post_image" android:layout_alignBottom="@+id/new_post_image" android:layout_marginBottom="12dp" android:layout_marginRight="12dp"> </RelativeLayout>

1 个答案:

答案 0 :(得分:3)

您可以将这两个RelativeLayouts放在一个水平方向的LinearLayout中,然后使用RelativeLayouts的权重。这会将LinearLayout分成2个相等的部分。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:baselineAligned="false">
    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">
   </RelativeLayout>
   <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">
   </RelativeLayout>
</LinearLayout>