为什么我的BottomBar位于屏幕中间?

时间:2017-01-18 16:08:44

标签: android android-layout navigation-drawer bottombar

我同时使用NavigationDrawer和BottomNavigationView。但在添加导航抽屉后,底部导航的位置会发生变化。我该如何解决?我认为这个问题是由我的xml文件引起的。

BottomBar

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" />

3 个答案:

答案 0 :(得分:4)

将您的BottomNavigationView附加到CoordinatorLayout(或您在app_bar_navigation_bar布局中的任何视图组)而不是DrawerLayout,并添加适当的重力标记。

android:layout_gravity="bottom"

答案 1 :(得分:1)

尝试使用两个中的任何一个=

android:layout_gravity="bottom"

android:gravity="bottom"

答案 2 :(得分:0)

使用android:layout_gravity =“bottom”而不是layout_alignParentBottom,因为它适用于RelativeLayout而不是android.support.v4.widget.DrawerLayout。