Android 中的约束布局问题
Constraint layout issue in Android
所以我最近转向了约束布局,但我无法弄清楚这一点。所以这是我的代码:
<?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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".dashboard.DashboardActivity">
<FrameLayout
android:id="@+id/dashboard_framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/dashboard_bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/windowBackground"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@android:color/white"
app:itemTextColor="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/dashboard_framelayout"
app:menu="@menu/menu_dashboard_bottom_navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
这就是它的样子
那么我的代码哪里做错了?我将 BottomNavigationView 的约束设置为父级,但不知何故它被进一步向下推,我不知道如何解决这个问题。
由于 FrameLayout 与 Parent 匹配,并且您将底部导航的顶部提供给框架布局的底部,这就是它下降的原因。
删除此行
app:layout_constraintTop_toBottomOf="@id/dashboard_framelayout"
确实可行,但您的底部导航将覆盖 FrameLayout。如果那是你想要的,那很好。如果您不希望它覆盖,请执行以下操作:
在 FrameLayout 中,更改 layout_height=0dp
以匹配约束。还要添加以下约束:app:layout_constraintBottom_toTopOf="@id/dashboard_bottom_navigation
在 BottomNavigationView 中,您无需执行任何操作。您可以保留顶部约束(这将链接两个视图)或将其删除。无论哪种方式,如果您隐藏 NavView,FrameLayout 将扩展以填充屏幕并在显示 NavView 时收缩。
所以我最近转向了约束布局,但我无法弄清楚这一点。所以这是我的代码:
<?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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".dashboard.DashboardActivity">
<FrameLayout
android:id="@+id/dashboard_framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/dashboard_bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/windowBackground"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@android:color/white"
app:itemTextColor="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/dashboard_framelayout"
app:menu="@menu/menu_dashboard_bottom_navigation" />
</androidx.constraintlayout.widget.ConstraintLayout>
这就是它的样子
那么我的代码哪里做错了?我将 BottomNavigationView 的约束设置为父级,但不知何故它被进一步向下推,我不知道如何解决这个问题。
由于 FrameLayout 与 Parent 匹配,并且您将底部导航的顶部提供给框架布局的底部,这就是它下降的原因。
删除此行
app:layout_constraintTop_toBottomOf="@id/dashboard_framelayout"
确实可行,但您的底部导航将覆盖 FrameLayout。如果那是你想要的,那很好。如果您不希望它覆盖,请执行以下操作:
在 FrameLayout 中,更改 layout_height=0dp
以匹配约束。还要添加以下约束:app:layout_constraintBottom_toTopOf="@id/dashboard_bottom_navigation
在 BottomNavigationView 中,您无需执行任何操作。您可以保留顶部约束(这将链接两个视图)或将其删除。无论哪种方式,如果您隐藏 NavView,FrameLayout 将扩展以填充屏幕并在显示 NavView 时收缩。