我正在开发Android项目。在手势模式下显示完美当我在设备中启用手势导航时,按钮导航栏显示完美,但当我切换回设备中的按钮导航时,它的高度变得太大。它变成了像这样当我将自定义高度设置为 70 dp 时,它在手势模式下也能完美工作,但它会折叠起来,并且图标不可见,这次不在按钮导航模式下添加标签。这是我的代码:-
<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".view.admin.AdminHome">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/adminFragmentContainerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginBottom="?attr/actionBarSize"
/>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/cor"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
>
<com.google.android.material.bottomappbar.BottomAppBar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_gravity="bottom"
>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bNav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:elevation="20dp"
android:background="@android:color/transparent"
app:itemActiveIndicatorStyle="@style/App.Custom.Indicator"
app:itemIconSize="25dp"
app:itemIconTint="@color/bottom_nav_background_item"
app:itemTextColor="@color/bottom_nav_background_item"
app:labelVisibilityMode="selected"
app:layout_behavior="@string/hide_bottom_view_on_scroll_behavior"
app:menu="@menu/b_nav"
/>
</com.google.android.material.bottomappbar.BottomAppBar>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
我希望它可以在两种模式下工作,无论是导航模式还是手势模式。
任何解决方案,我面临同样的问题,如果您找到答案,请分享吗?