Ideas for android navigation bar (below action bar)

230 Views Asked by At

I have a design for an app that will have a row of buttons below the action bar. Each button will open a different fragment. I am aware of ViewPagers, but I do not want the swipe between fragments functionality. I know that I can disable this functionality, but at that point is it worth using a ViewPager? I know this is a pretty common design paradigm, so how do most apps handle this sort of thing?

It seems like the ViewPager will provide some nice functionality out of the box, like switching between fragments and what not. So, I am leaning towards using one, but was hoping someone could provide some feedback on this approach.

Thanks!

3

There are 3 best solutions below

0
On BEST ANSWER

Keep the buttons in the layout of your main activity. Have them call a function lets say loadFragment(Button button) on click.

This function then handles switching of the fragments, and you can change the display of the navigation buttons inside this function itself to highlight the appropriate button or something equivalent.

0
On

Google Design is always worth the reading.

Check http://developer.android.com/design/patterns/swipe-views.html for details.

0
On

Personally I have used ViewPager with tab layout for swiping purpose and it makes it easy to me to synchronise the transitions ( tabs and pages) where I put a red circle to the tab corresponding to the viewed page. With this approach I got a clean separated code.