Questions tagged [slidingmenu]

The Sliding Menu is a design pattern made popular by the Google+, YouTube, and Facebook apps.

The Sliding Menu is a design pattern made popular by the Google+, YouTube, and Facebook app. The Sliding Menu is commonly used in Android and iOS apps.

Android:

594 questions
45
votes
3 answers

AndroidStudio - Module Dependencies in Gradle

I have a little problem compiling an android application using module dependencies in Android Studio. So, I want my application to use the library 'slidingmenu' (link here). Here is my application tree: Application slidingmenu (source…
Tiberiu Mihai
  • 711
  • 1
  • 7
  • 12
23
votes
2 answers

Bootstrap 3.0 Sliding Menu from left

I've implemented a sliding menu from left to right in my bootstrap 3.0 website using mmenu. However, the performances in Android (samsung galaxy) are not ideal. I also have a default collapsing menu (nav- dropdown) which perform much better. I was…
22
votes
4 answers

How to import slidingmenu on Android Studio?

I'm using Android Studio, and as you know, importing libraries used in current IDE like Eclipse is not easy with Android Studio. I'm trying to import the slidingmenu lib into my project but I don't know how to do it well. I've tried as they said in…
bengous
  • 205
  • 2
  • 4
  • 13
21
votes
3 answers

What is the alternative of SlidingDrawer which is deprecated? For sliding up from bottom

Hey I need some sliding menu from bottom of screen. And I saw that the SlidingDrawer is deprecated. So what is the alternative to SlidingDrawer which I can use for sliding up from bottom. I know there is the NavigationDrawer, but I think that's…
user2940365
18
votes
4 answers

What is the difference between the SlidingMenu library and the Android Navigation Drawer?

The SlidingMenu library is an excellent third party library and I've already used it for a long time. Now I know Android provides a new navigation pattern using Navigation Drawer. It looks like the sliding menu. So is there anyone who already uses…
XWang
  • 797
  • 2
  • 7
  • 20
15
votes
3 answers

java.lang.IllegalStateException: Failure saving state: active has cleared index in fragment

First, my app has structure like this: SpashActivity -> MainActivity -> switching between many fragments My app use SlideMenu to switch between fragments. I have to use attach instead of replace to keep fragment state. It's look like: public…
ductran
  • 10,043
  • 19
  • 82
  • 165
12
votes
5 answers

How to implement two level slidingmenu in Android using jfeinstein10 / SlidingMenu?

I want to create 2 level sliding menu in android. When i click on the first sliding menu item i need to show another sliding menu on the left to it. I created the first level sliding menu using the following code.
venkat
  • 517
  • 1
  • 8
  • 29
11
votes
2 answers

How to use getResources() on a Adapter.java

I want to add icons on my TabView, but I am stuck because I can't use getResources() in a custom TabAdapter. I already try to use getAplicationContext().getResources, getActivity.getResources(), but i am still seeing the message "cannot resolve…
GLAPPs Mobile
  • 99
  • 1
  • 1
  • 12
11
votes
1 answer

How to show SlidingPaneLayout at right side?

Hi I am a beginner for android and in my app I have to show SlidingPaneLayout at the right side but using my below code it's coming from left side. Please help me. How can I make it be at right side? And second my requirement is my SlidingPaneLayout…
Krish
  • 4,166
  • 11
  • 58
  • 110
11
votes
5 answers

The getDecorView method return view include navigation bar view on lollipop?

I use SlidingMenu to implement my slide-in menus. The code is private void initSlidingMenu() { // configure the SlidingMenu menu = new SlidingMenu(this); menu.setMode(SlidingMenu.LEFT); …
Ray
  • 468
  • 4
  • 17
11
votes
2 answers

avoid reloading on back pressed in fragments

I am making an app for car finding.I am showing result in gridview and also have a sliding menu on right hand side(for search filter).I have made this whole app with the help of fragments.In the gridview I have a load more footer at bottom, when I…
userAndroid
  • 586
  • 2
  • 9
  • 26
11
votes
5 answers

Android - problems animating ActionBar icon from Fragments

I'm having some problems consistently animating a 'refresh' icon in the ActionBar of my app. I have a container FragmentActivity which swaps fragments in and out as the user navigates through the app (either from within the fragment itself or from a…
11
votes
2 answers

Android - Sliding menu with sub menu

I wanted my app to have face book like sliding menu. I google'd about the issue and found many posts out there, which only helped me to build a single sliding menu. But what i need is, 2 level sliding menu ie, when i click on some option in sliding…
suresh cheemalamudi
  • 6,190
  • 11
  • 49
  • 67
10
votes
1 answer

mimicking the navigation drawer of youtube/gmail app

Background In the recent months Google released the Youtube app with navigation drawer (AKA sliding menu). it has many cool features that i wish to have on an app i'm working on. the features are: touch anywhere to start sliding. moving icon on…
10
votes
6 answers

Gradle error with Android project added as a library (SlidingMenu) [package does not exist]

I've never used Gradle before so I'm completely lost! I've added SlidingMenu as a library and I have access from my project to all the SlindingMenu stuff, but trying to compile will give me this error: Gradle: package…
Enrichman
  • 11,157
  • 11
  • 67
  • 101
1
2 3
39 40