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
0
votes
1 answer

Google sliding menu with actionbar sherlock separate fragment menu items

I get this error when trying to implement the google sliding menu with actionbar sherlock. I want to have separate menu items for each fragment. It gives me this error at onCreateOptions menu and at onOptionsItemSelected but only in the Fragment; in…
Jerome
  • 167
  • 1
  • 12
0
votes
1 answer

Android SlidingMenu listeners for secondary menu open events

how to handle secondary menu open events while using SlidingMenu library in left_right mode i found code for OpenListener for BehindContentView menu getSlidingMenu().setOnOpenListener(new OnOpenListener() { @Override …
sajith
  • 2,564
  • 8
  • 39
  • 57
0
votes
2 answers

Switching fragments in Sliding Menu?

There's a time come when someone include some codes without explaining. Well, this time it's this case because the codes aren't hard at all. I'm trying to switch fragments in sliding drawer. Codes: mDrawerList.setOnItemClickListener(new…
user2607848
0
votes
1 answer

Using SlidingMenu with ABS Tabs working incorrectly?

I have Actionbar Sherlock and SlidingMenu set up in my project. I want the menu to slide in under the actionbar, so I set: setSlidingActionBarEnabled(false); Though, when I have the action bar Navigation Mode set up with…
D-Kent
  • 142
  • 8
0
votes
2 answers

Android Re-loading a particular part of the Screen

I have a FrameLayout which has two components - Menu Panel - Just like Facebook menu. Sliding Panel - This consists of a fixed header + a variable view . The Sliding panel has a fixed header and VARIABLE VIEW. The Variable view will change based…
Anukool
  • 5,301
  • 8
  • 29
  • 41
0
votes
1 answer

Has Anyone succeeded in implementing Holoeverywhere + Slidingmenu library 100% perfect?

I have implemented it on a project and I am getting java.lang.NoSuchFieldError: android.support.v4.app._HoloFragment.mChildFragmentManager error. I am getting this error on rotating screen or when the HoloFragments onDestroyView() is called. Details…
0
votes
1 answer

What is the new slide-menu that apps like 4sq and G+ are using recently?

well, I am working with an slide-menu library a couple of months ago (https://github.com/jfeinstein10/SlidingMenu), but I'm having trouble working with it since I'm using a Map fragment and I have this error: How to remove black cover on top of…
unmultimedio
  • 1,224
  • 2
  • 13
  • 39
0
votes
0 answers

More than 2 menus in a single activity in Sliding Menu (jfeinstein10)

Is it possible to have attached in one activity more than 2 SlidingMenu objects? Triggered by different buttons? What I'm planning is have a bottom action bar, so I have all 4 corners of the screen with buttons. I want each of those to trigger or…
unmultimedio
  • 1,224
  • 2
  • 13
  • 39
0
votes
2 answers

Half blank screen on ResponsiveUI in SlidingMenu

The SlidingMenu demo app from the PlayStore works without any problem on my N7. But when I compile it from my computer, I have the following problem in ResposiveUI Activity : when I open the SlidingMenu on Portrait and change the orientation to…
2t0m
  • 165
  • 1
  • 13
0
votes
1 answer

Non-sliding content and action bar using SlidingMenu library

I am using Jeremy Feinstein's SlidingMenu library to implement a sliding menu on the right. Is there any way to make the menu slide out without displacing/pushing the content view to the side? Currently, when the menu slides out, the content also…
Tikiboy
  • 892
  • 10
  • 20
0
votes
1 answer

With jfeinstein10's slidingmenu,how to create slide up menu

I would like to use the sliding menu library to create a slide up menu which shows up in the bottom of the screen as you pull the bottom title bar up. Something like this.. I am new to Android. Any idea how I could reuse the library to do this?…
Codedroid
  • 518
  • 7
  • 16
0
votes
4 answers

Sliding Menu shows always full screen with ActionBar Sherlock

I'm developing an Android application that uses jfeinstein10/SlidingMenu with Action Bar Sherlock. It is the first time I used it and I don't know how to open it on not full screen mode. I want see the activity and the menu. This is my…
VansFannel
  • 45,055
  • 107
  • 359
  • 626
0
votes
1 answer

Monodroid Sliding Menu can't work at android 2.2

I used the SlidingMenu library in my application, according to https://github.com/xamarin/monodroid-samples/tree/master/SlidingMenu. I build and run application successfully on the android 4.0+, but I failed run application on the android 2.2, but I…
regrecall
  • 521
  • 1
  • 6
  • 20
0
votes
1 answer

Expandeble menu using sliding menu

I want to implement sliding menu in my application with some different requirment.I got the working sample for simple sliding menu and it just works fine. But i want to implement expandable menu using sliding menu.In which when user selects main…
dd619
  • 5,910
  • 8
  • 35
  • 60
0
votes
0 answers

Why Android libslide menu with actionbarsherlock open automatically?

I have a project with the sliding menu (from jeremy feinstein) and actionbarsherlock. For some reason, when the activity shows up the slide menu open automatically too. Quick note about my app architecture: All of my activities have the slide menu…