Navigation between views is an important part of any application. There are several ways to setup navigation in an Android application:
These four represent the most common navigation paradigms in Android applications. The specifics for how to implement these can be found in the various links above.
Check out the ViewPager with FragmentPagerAdapter cliffnotes for more details of how to add swipe-able views as a form of navigation. We can use a tab indicator to display tabs on top of a swiping view.
To create a basic navigation drawer that toggles between displaying different fragments, check out the Fragment Navigation Drawer cliffnotes. For more details about creating a custom drawer check out the Creating a Navigation Drawer docs.
Check out the ActionBar Tabs cliffnotes for more details of how to add ActionBar tabs to your Activity. Note that ActionBar Tabs is deprecated since Android API 21.