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.
Try to put it in Relative layout and use the below property in view pager.
android:layout_below="@+id/bottom_navigation"
Add this one line in the coordinator layout:
android:layout_marginBottom="?attr/actionBarSize"
and it will work
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With