SlidingMenu icon indicating copy to clipboard operation
SlidingMenu copied to clipboard

An Android library that allows you to easily create applications with slide-in menus. You may use it in your Android apps provided that you cite this project and include the license in your app. Thank...

Results 101 SlidingMenu issues
Sort by recently updated
recently updated
newest added

The code as follow: // configure the SlidingMenu menu = new SlidingMenu(this); menu.setMode(SlidingMenu.LEFT); menu.setMenu(R.layout.menu_frame); menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN); menu.setBehindOffset(100); menu.setFadeDegree(0.35f); menu.attachToActivity(this, SlidingMenu.SLIDING_WINDOW); But the method setMenu did't work.The layout of menu is empty.why?

I haven't received an exception for this issue, however sometimes when the sliding menu is revealed through a swipe gesture, the sliding menu locks up. I can't interact with it...

Hi, first thanks for the amazing Framework. I got an issue with clicks in the content. Probaly I just to blind to find the correct setting. I dont want the...

Exception Type: java.lang.RuntimeException Reason: Canvas: trying to use a recycled bitmap android.graphics.Bitmap@41ea06b8 CustomViewAbove.java line 817 com.slidingmenu.lib.CustomViewAbove.dispatchDraw

This can happen when a DOWN event is triggered in the quickreturn area, and the finger then moved out of that area without triggering a drag (e.g. by moving vertically...

CanvasTransformer originly keep a CanvasTransformer as private field in order to easily concatenate the animation. However its implementation cause StackOverflow error so i recently provide a new design.

hi , i am using this library and like it . i want to use menu transparency on top of behind view . transparency is not problem but how i...

Hello, I often see this problem in crashalytics for an app I'm working on. Could you please give me a hint why is this issue happening and how I could...

Ignored View hitrect is in parent coordinates which may not start at 0;0. I used View.getGlobalVisibleRect to make it work with my ignored view : ``` java private boolean isInIgnoredView(MotionEvent...