I am in a bit of trouble, I have an already made app which uses a traditional menu (more like a social networking app), Now, I have decided to replace that menu with a swipe style menu based on the jfeinstein10/SlidingMenu library.
AS far as I know and have read, the way to integrate that library is to extend the main activity with the sliding menu class, However, The problem I face is that since my app uses the google maps api, It already extends the Map Activity,
public class MainActivity extends MapActivity implements View.OnClickListener
Hence, I am not sure how to further include the sliding activity since java doesn't support multiple inheritance. Further, I can't use an instance of the other classes. I know that there is some other way for example directly through a constructor of integrating the library as well. Any help, Thanks !!