Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BottomNavigationView overlaps with last item

My XML layout as below:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinatorLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <!-- AppBar Layout   -->
    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="fill_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
            <Button
                android:id="@+id/filter_location"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="?android:attr/borderlessButtonStyle"
                android:drawableRight="@drawable/ic_filter_list_white_24dp"
                android:layout_gravity="right"
                />
        </android.support.v7.widget.Toolbar>
        <!-- Tab Layout for creating tabs -->
        <android.support.design.widget.TabLayout
            android:id="@+id/tabLayout"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
    </android.support.design.widget.AppBarLayout>
    <!-- Helps handing the Fragments for each Tab -->
    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/float_search"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_marginBottom="70dp"
        android:src="@android:drawable/ic_menu_search" />

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:background="@color/colorPrimary"
        app:itemBackground="@color/colorPrimary"
        app:itemIconTint="@color/windowBackground"
        app:itemTextColor="@color/windowBackground"
        app:menu="@menu/bottom_navigation_main" />
</android.support.design.widget.CoordinatorLayout>

The BottomNavigationView overlaps with the last item in the content. How should I fix this ? How can I make the last item above the BottomNavigation bar ? I have tried adding linear layout inside but still did not work.

like image 402
kylas Avatar asked Mar 03 '17 06:03

kylas


3 Answers

Try to put it in Relative layout and use the below property in view pager.

android:layout_below="@+id/bottom_navigation"
like image 193
Shreya Patel Avatar answered Oct 19 '22 09:10

Shreya Patel


Add this one line in the coordinator layout:

android:layout_marginBottom="?attr/actionBarSize"

and it will work

like image 24
Mohamed Niyaz Avatar answered Oct 19 '22 10:10

Mohamed Niyaz


Remove android:layout_gravity="bottom" from android.support.design.widget.BottomNavigationView and add the following

app:layout_anchor="@+id/viewPager"
app:layout_anchorGravity="bottom"

in android.support.design.widget.BottomNavigationView

like image 1
Anurag Singh Avatar answered Oct 19 '22 10:10

Anurag Singh