我正在努力使用一个简单的底部导航栏。以下是Android Studio生成的示例代码:
<?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=".BottomNav">
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:background="@color/dir_primary"
android:elevation="4dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/bottom_nav" />
</android.support.constraint.ConstraintLayout>
我遇到的问题是,每当我触发打开底部导航时,这就是创建一个覆盖我主要布局的整体布局:
https://drive.google.com/open?id=1pknRhMj0psn0sAIbX7-WU1KMq-ZvpRz-
我使用名为BottomNav的活动的Intent打开导航。每当我触发导航时,它会打开整个白色空间以及底部的红色导航。我只想在我的主要布局上弹出底部导航而不是覆盖它。但是,如果我删除ConstraintLayout,我会删除不需要的空白区域但导航位于顶部而不是底部。这真让我抓狂。任何帮助表示赞赏。