0

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

那么将按钮放置在布局的右侧并节省列宽的正确方法是什么?

<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>
4

1 回答 1

0

将您的内部ScrollView和设置LinearLayout layout_width0dp,然后权重将实际生效。现在你的“wrap_content”宽度与重量参数冲突。

于 2013-06-04T16:16:19.393 回答