RelativeLayout占用父布局的更多位置

时间:2013-05-30 12:25:48

标签: android android-layout

我正在尝试使用2列进行布局,其中layout_weigth为0.2和0.8。它们中的每一个都包含垂直滚动,但在右列中我想在顶部使用按钮进行固定布局,并在它们下方垂直滚动。我想在布局的右侧放置按钮,所以我使用相对布局。问题是,当我在relativeLayout中的任何按钮或textview设置android:layout_alignParentRight =“true”param时,它的宽度变得比需要的大(看起来像重量参数被忽略)。但是当我将固定宽度(300dp)设置为RelativeLayout时,列的宽度在weight params中指定。

那么将按钮放在布局的右侧部分并保存列宽度的正确方法是什么?

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="1" >

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginLeft="30dp"
        android:layout_weight=".2"
        android:background="@android:color/white"
        android:scrollbars="none" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="sometext" />
        </LinearLayout>
    </ScrollView>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="30dp"
        android:layout_weight=".8"
        android:orientation="vertical" >

        <RelativeLayout
            android:id="@+id/MyRelativeLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="20dp"
            android:background="@android:color/white" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBaseline="@+id/ToggleButton2"
                android:layout_alignBottom="@+id/ToggleButton2"
                android:layout_alignParentLeft="true"
                android:text="По рейтингу" />

            <ToggleButton
                android:id="@+id/ToggleButton1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_toLeftOf="@+id/ToggleButton2" />

            <ToggleButton
                android:id="@+id/ToggleButton2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true" />

        </RelativeLayout>

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/white"
            android:scrollbars="none" >

            <view
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                class="my.app.MyAppView"/>
        </ScrollView>

    </LinearLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

将您的内部ScrollViewLinearLayout layout_width设置为0dp,然后权重才会生效。现在你的“wrap_content”宽度与权重参数冲突。