回收视图有一半的高度

时间:2018-01-12 18:51:37

标签: android xml android-layout recyclerview-layout

我在此布局上遇到此回收视图的问题,它不会占用您父容器的完整高度。

我使用了重量参数,但这不是我认为的问题。

检查代码和打印屏幕。

提前致谢。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools">

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

        <android.support.v7.widget.RecyclerView
            android:id="@+id/subjects"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            app:layoutManager="android.support.v7.widget.GridLayoutManager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.5"
            android:orientation="horizontal"
            tools:listitem="@layout/item_subject_tab" />


        <RelativeLayout
            android:id="@+id/usageStatusListContainer"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="0.1"
            android:background="@color/colorLight">

            <ListView
                android:id="@+id/chapters"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:divider="@color/colorLight"
                tools:listitem="@layout/item_chapter_usage_status"/>

        </RelativeLayout>

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

Layout

0 个答案:

没有答案