RecyclerView作物底部数据

时间:2018-08-26 15:00:25

标签: android layout android-recyclerview android-constraintlayout

我有一个带有recyclerview的约束布局。我的列表中的某些项目未出现,因为recyclerview正在裁剪。当我看到recyclerview的约束底部到我父母的底部时,一切在底部都可以正常工作,但是在顶部我还有其他问题。回收者视图转到我的卡片视图的背面,从而减少了顶部的痕迹。

那是我的布局吗?

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/shadow"
    android:orientation="vertical"
    android:paddingBottom="8dp">

    <android.support.v7.widget.CardView
        android:id="@+id/myCardView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        app:cardCornerRadius="4dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <EditText
                android:id="@+id/txtExpenseValue"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginBottom="8dp"
                android:layout_marginLeft="16dp"
                android:layout_marginTop="8dp"
                android:ems="10"
                android:inputType="textPersonName"
                android:background="@android:color/transparent"
                android:hint="@string/expense_category"
                android:drawableLeft="@drawable/ic_folder"
                android:drawablePadding="8dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

            <Button
                android:id="@+id/btnRegister"
                android:layout_width="51dp"
                android:layout_height="52dp"
                android:layout_marginBottom="8dp"
                android:layout_marginRight="10dp"
                android:layout_marginTop="8dp"
                android:background="@drawable/btn_add_newdesign"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

        </android.support.constraint.ConstraintLayout>
    </android.support.v7.widget.CardView>

    <TextView
        android:id="@+id/txtTotalPrice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="15dp"
        android:text="R$ 15.000,00"
        android:textSize="24sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toBottomOf="@id/myCardView" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/myRecyclerView"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:background="@color/shadow"
        android:padding="4dp"
        android:scrollbars="vertical"
        android:layout_marginBottom="4dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/txtTotalPrice" />
    </android.support.constraint.ConstraintLayout>

im尝试使用页边距来纠正,但不起作用。 That is my layout!

1 个答案:

答案 0 :(得分:2)

RecyclerView的底部约束到父级的底部,并将其android:layout_height设置为0dp以匹配约束而不是match_parent。不建议按照documentation中所述,将{{1}中的match_parent用于Views中包含的ConstraintLayout

  

重要提示:不建议对ConstraintLayout中包含的窗口小部件使用MATCH_PARENT。可以使用MATCH_CONSTRAINT定义类似的行为,并将相应的左/右或上/下约束设置为“父”。