为什么我的 BottomBar 在屏幕中间?
Why is my BottomBar in the middle of the screen?
我同时使用了 NavigationDrawer 和 BottomNavigationView。但是在添加 Navigation Drawer 之后,Bottom Navigation 的位置发生了变化。我该如何解决?我认为这个问题是由我的 xml 个文件引起的。
activity_main.xml
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start"
tools:context="com.example.yunus.ototakip.MainActivity">
<include
layout="@layout/app_bar_navigation_bar"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_navigation_bar"
app:menu="@menu/activity_navigation_bar_drawer" />
<FrameLayout
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@color/beyaz"
app:itemTextColor="@color/beyaz"
app:menu="@menu/bottombar_menu" />
使用 android:layout_gravity="bottom" 而不是 layout_alignParentBottom 因为它用于 RelativeLayout 而不是 android.support.v4.widget.DrawerLayout.
将您的 BottomNavigationView
附加到 CoordinatorLayout
中(或您在 app_bar_navigation_bar 布局中的任何视图组)而不是 DrawerLayout
并添加适当的重力标签。
android:layout_gravity="bottom"
尝试使用两者中的任何一个=
android:layout_gravity="bottom"
或
android:gravity="bottom"
我同时使用了 NavigationDrawer 和 BottomNavigationView。但是在添加 Navigation Drawer 之后,Bottom Navigation 的位置发生了变化。我该如何解决?我认为这个问题是由我的 xml 个文件引起的。
activity_main.xml
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start"
tools:context="com.example.yunus.ototakip.MainActivity">
<include
layout="@layout/app_bar_navigation_bar"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_navigation_bar"
app:menu="@menu/activity_navigation_bar_drawer" />
<FrameLayout
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@color/beyaz"
app:itemTextColor="@color/beyaz"
app:menu="@menu/bottombar_menu" />
使用 android:layout_gravity="bottom" 而不是 layout_alignParentBottom 因为它用于 RelativeLayout 而不是 android.support.v4.widget.DrawerLayout.
将您的 BottomNavigationView
附加到 CoordinatorLayout
中(或您在 app_bar_navigation_bar 布局中的任何视图组)而不是 DrawerLayout
并添加适当的重力标签。
android:layout_gravity="bottom"
尝试使用两者中的任何一个=
android:layout_gravity="bottom"
或
android:gravity="bottom"