I am using the new navigation drawer available from the support library. When using the drawer along with tabs, the drawer menu is getting displayed below the tabs as shown below. How can i make sure the drawer menu is shown on the tabs. (It should display the drawer menu as if there are no tabs)
Drawer menu without tabs
Drawer menu with tabs
I got the same issue and the answer I got from Roman Nurik (Android team) is that the Navigation Drawer should not be used with the Action Bar tabs.
The discussion can be found here: https://plus.google.com/u/1/116515063230772720916/posts/8dWEkFcbTFX
In my AppCompatActivity I add this:
And I call this on the toolbar menu icon
xml file
WordPress Android version have an implementation of the problem you stated.
They developed a mimic version of TabView called "HorizontalTabView". Why they make this is exactly same as what you (also me) need.
WordPress github: https://github.com/WordPress/WordPress
Related source:
Hope this tip helps.