RecyclerView显示不全(没有嵌套,不是RelativeLayout)

 

问题:RecyclerView最后一列内容显示不全

原因:RecyclerView属性设置不当

 

错误属性:

RecyclerView显示不全(没有嵌套,不是RelativeLayout)

RecyclerView显示不全(没有嵌套,不是RelativeLayout)

 

正确布局:

RecyclerView显示不全(没有嵌套,不是RelativeLayout)

RecyclerView显示不全(没有嵌套,不是RelativeLayout)

代码:

<android.support.v7.widget.RecyclerView
    android:id="@+id/rv_category_fragment_content"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_marginTop="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/et_category_fragment_search">

</android.support.v7.widget.RecyclerView>

问题解决!!!