android XML格式的小部件下方

nvbavucw  于 2023-01-28  发布在  Android
关注(0)|答案(1)|浏览(100)

我已经尝试解决这个问题,但每一种方法,我尝试了错误。我试图添加一个底部导航视图下面的框架布局,但每次底部导航视图跟上框架布局或内部。我该怎么办?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
     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:layout_height="match_parent"
     android:layout_width="match_parent"
     android:background="#2b2b2b"
     android:id="@+id/coordinator"
     tools:context=".Home">

    <android.widget.FrameLayout
        android:id="@+id/bottom_nav_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent">
        (...)
    </android.widget.FrameLayout>
    
    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_nav"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/bottom_nav_frame"
        android:background="#2b2b2b"
        app:iconTint="#ffffff"
        app:menu="@menu/bottom_nav_menu"/>

</RelativeLayout>
luaexgnf

luaexgnf1#

在底部导航视图中添加以下行

android:layout_alignParentBottom="true"

相关问题