Fragment Container 视图中的 Android 工具栏和底部栏重叠的 Recycler 视图

android toolbar and bottom bar overlapping recycler view in fragment container view

提问人:kochipek 提问时间:10/16/2023 最后编辑:Aniruddh Pariharkochipek 更新时间:10/17/2023 访问量:41

问:

我正在尝试将 RecyclerView 与自定义工具栏和底部栏一起使用,但即使我在 xml 文件中使用了 constraintTop_toBottomOf,两者都与 RecyclerView 重叠。constraintBottom_toTopOf

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/frame_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".ui.FeedFragment">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:title="@string/feed"
            />

        <androidx.fragment.app.FragmentContainerView
            android:id="@+id/fragmentContainerView"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:defaultNavHost="true"
            app:layout_constraintTop_toBottomOf="@+id/toolbar"
            app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:navGraph="@navigation/nav_map" />

        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomNavigationView"
            android:layout_width="match_parent"
            android:layout_height="75dp"
            android:layout_gravity="bottom"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:menu="@menu/bottom_nav_feed" />
    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>
XML 移动 Android-RecyclerView

评论

0赞 ΓDΛ 10/16/2023
它没有出现在 Recyclerview 代码中?
0赞 kochipek 10/16/2023
它在包含recyclerview代码的片段屏幕中查看工具栏和底部栏之间。但是当我在模拟器上运行代码时,我仍然有问题

答:

0赞 Laxmi kant 10/16/2023 #1

缺少 bottomNavigation 和 Toolbar 的约束 ID , add in your 和 add at Bottomnavigationapp:layout_constraintBottom_toTopOf="@+id/fragmentContainerView"toolbarapp:layout_constraintTop_toBottomOf="@+id/fragmentContainerView"

结论:

    <?xml version="1.0" encoding="utf-8"?>
    <layout xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/frame_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toTopOf="@+id/fragmentContainerView"
            app:title="@string/feed"
            />

        <androidx.fragment.app.FragmentContainerView
            android:id="@+id/fragmentContainerView"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:defaultNavHost="true"
            app:layout_constraintTop_toBottomOf="@+id/toolbar"
            app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:navGraph="@navigation/nav_map" />

        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomNavigationView"
            android:layout_width="match_parent"
            android:layout_height="75dp"
            android:layout_gravity="bottom"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:menu="@menu/bottom_nav_feed"
            app:layout_constraintTop_toBottomOf="@+id/fragmentContainerView"
            />
    </androidx.constraintlayout.widget.ConstraintLayout>
    </layout>

评论

0赞 kochipek 10/16/2023
有道理,但对我不起作用。在android studio中,回收器视图看起来应该如此,但是当我在模拟器上运行应用程序时仍然重叠
0赞 kochipek 10/17/2023 #2

当我仔细检查导航图时,我注意到 XML 中缺少 NavHost,即使它应该在那里。我通过在主活动的 XML 中删除并重新添加片段容器视图解决了这个问题。