I am working on an Android app. Our designer has the idea that we need a paging control looks like Etsy iPhone. (See the image below)
Basically you can swipe on the grey title bar or the content to switch screen.
Is there any existing 3rd party control does this?

I would recommend you to use Jake Whartons ViewPageIndicator(or just a normal ViewPager):
Create a
Fragmentfor every of your Layouts and set the layout to your Fragment with theonCreateView()methode inside your fragment(only if you want to have different layouts. If you have the same Layout but just different data, you can just use one Fragment and pass the data in the getItem() methode)Now create a
FragmentPagerAdapterthere sould be a methode calledgetItem().Switchthe Position and set it to your Fragment:Now you should be able to swipe to your Layouts(Fragments) easily