android 为什么我的底部导航假设我的活动高度而不是我的FragmentContainerView?

ki1q1bka  于 2023-05-27  发布在  Android
关注(0)|答案(1)|浏览(125)

我的底部导航片段假设我的活动高度,而不是我的FragmentContainerView的。我想知道原因可能是什么。
这是我的bottomNavigation活动:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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/root_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/default_background"
    tools:context=".ui.MainActivity">

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragment_container_tab"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout="@layout/fragment_blank" />

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottomNavigationView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:menu="@menu/nav_menu" />

</androidx.constraintlayout.widget.ConstraintLayout>

我的界面看起来像这样,在这个特殊的例子中,我有一个32dp的marginBottom,但是正如你所看到的,视图假设了我的活动约束。

(对不起,我忘了打印)
我希望结果是这样的,这是我的预览屏幕。我希望我的片段的底部是BottomNavigationView的顶部:

我不知道什么代码可以帮助找到这个问题的解决方案,但如果需要,我可以提供更多的代码

8ehkhllq

8ehkhllq1#

我有两个不同的activity_main文件,其中一个文件在XML中有一个小bug。我不知道第二个活动最初是如何创建的。

相关问题