0

I first made scrollable tabs in my app and it is working perfectly then I also want to insert navigation drawer in this app .I coded all the thing but navigation drawer is not visible .

i think this is because I made scrollable tabs main activity as launcher and navigation one is default .

So plz guide me as how can I set two classes as Launcher or is there some other method?

pa1pal
  • 721
  • 3
  • 14
  • 30

1 Answers1

0

ViewPager with sliding tab functionality and sliding navigation menu are one of the most popular Android open source components.

There're literally hundreds of clones of such - let me give you the links below.

Check out their demos, compile them, and play around with them. And, let's contribute some time to their projects!

enter image description here

https://github.com/astuetz/PagerSlidingTabStrip

enter image description here https://github.com/jfeinstein10/SlidingMenu

melvynkim
  • 1,505
  • 1
  • 23
  • 36
  • thanks for your response , but I want both of these features in a single app . – pa1pal Jun 08 '14 at 05:05
  • 1
    If you want these two in a single app, you just have to import them both in your app library, configure in `xml` at appropriate places, then programmatically load them in your `.java`. – melvynkim Jun 08 '14 at 05:09