我已经尝试解决这个问题,但每一种方法,我尝试了错误。我试图添加一个底部导航视图下面的框架布局,但每次底部导航视图跟上框架布局或内部。我该怎么办?
<?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>
1条答案
按热度按时间luaexgnf1#
在底部导航视图中添加以下行