ConstraintLayout RecyclerView显示在BottomNavigationView下

时间:2018-08-30 15:28:41

标签: android android-recyclerview android-constraintlayout

如何使用ConstraintLayout在BottomNavigationView下不显示RecyclerView。

这是结果(回收站应该显示20个元素)

enter image description here

这是xml

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/myListSimple"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="0dp"
        android:layout_marginStart="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation"/>

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:4)

您对match_parent的{​​{1}}和android:layout_width都使用android:layout_height,不建议对RecyclerView中包含的Views使用ConstraintLayout。您应该使用0dp来匹配约束:

<android.support.v7.widget.RecyclerView
    android:id="@+id/myListSimple"
    android:scrollbars="vertical"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintBottom_toTopOf="@id/navigation"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />