ConstraintLayout RecyclerView显示在BottomNavigationView下

问题描述 投票:2回答:1

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

这是结果(回收者应该显示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>
android android-recyclerview android-constraintlayout
1个回答
4
投票

你正在使用match_parent用于android:layout_widthandroid:layout_heightRecyclerView,这不推荐用于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" />
© www.soinside.com 2019 - 2024. All rights reserved.