I\'m working on a Android project that only support API level > 14. As a consequence, we don\'t use the Android Support Library.
I would like to use the navigat
You simply use the support library as it contains the functionality you need. It does not matter that you do not want to use the other functionality contained within the library. It does contain the sliding menu that you want to use so just use it.
The alternative is to write your own code or use a different library.
Try not to think of the support library as "only for backwards compatibility". It provides functionality that is not included in the standard SDK's (such as ViewPager
and SlidingDrawer
)