Showing bottom navigation in v25.0.0 library support library?

Link: Nick Butcher Tweet https://twitter.com/crafty/status/789008273949200384

I implemented the bottom navigation view with Android Support Library v25.0.0 .

https://github.com/vipulasri/Bottom-Navigation-View-Sample

I am having the following issues:

  • Floating Action Button overlaps with Bottom Navigation View .
  • Snackbar displayed above the Bottom Navigation View .
  • The Bottom Navigation button is not automatically hidden or is displayed when scrolling.
  • Unable to get disclosure animation as below:

Bottom Navigation View Animation

+6
source share
2 answers

About the third and fourth question. The lower navigation chart automatically hides the title and makes an animation if there are more than 3 in it .

And the first and second question about you. You can try another root layout, such as CoordinatorLayout .

+1
source

Maybe it's late, but I did a small project to make a promotion animation in the background, such as your example, without a third part library.

Check here: https://github.com/GauvainSeigneur/CircularRevealBottomNavigationView

0
source

Source: https://habr.com/ru/post/1011517/


All Articles