gpt4 book ai didi

android - ConstraintLayout RecyclerView 显示在 BottomNavigationView 下

转载 作者:行者123 更新时间:2023-12-05 00:14:01 25 4
gpt4 key购买 nike

如何使用 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>

最佳答案

您正在为 RecyclerViewandroid:layout_widthandroid:layout_height 使用 match_parent 这是不推荐用于 ConstraintLayout 中包含的 Views。您应该使用 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" />

关于android - ConstraintLayout RecyclerView 显示在 BottomNavigationView 下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52100641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com