在提供固定百分比权重时获得不同的布局宽度

时间:2018-04-06 12:21:09

标签: android android-layout

虽然我已经指定了固定的布局权重,但我看到了不同的布局权重。

从下面的代码可以看出,statusLinearLayout的layout_weight设置为0.2,剩余空间设置为其他布局。

我使用以下布局作为Recycler项目。

var selectedBlocks = value.blocks;

以下是我在模拟器中获得的UI: enter image description here

如何使我的statusLinearLayout具有固定长度而不是可变长度?

1 个答案:

答案 0 :(得分:1)

试试这个

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mainLinearLayout"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:orientation="horizontal">

        <LinearLayout
            android:id="@+id/statusLinearLayout"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.2"
            android:orientation="vertical">

            <TextView
                android:id="@+id/statusTextView"
                android:text="nilesh"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.8"
            android:orientation="vertical">

            <TextView
                android:id="@+id/pNameTextView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="nilesh"
                android:gravity="center" />

            <TextView
                android:id="@+id/hNameTextView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="nilesh"
                android:gravity="center" />

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

                <TextView
                    android:id="@+id/sTypeTextView"
                    android:layout_width="0dp"
                    android:text="nilesh"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:gravity="center" />

                <TextView
                    android:id="@+id/dateTextView"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="nilesh"
                    android:gravity="center" />
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_below="@+id/mainLinearLayout"
        android:background="@color/colorPrimary" />
</RelativeLayout>

<强> RESULT

enter image description here