SlidingMenu alternatives and similar packages
Based on the "Menu Widget" category.
Alternatively, view SlidingMenu alternatives based on common mentions on social networks and blogs.
-
Side-Menu.Android
Side menu with some categories to choose. -
Context-Menu.Android
You can easily add awesome animated context menu to your app. -
AndroidResideMenu
The idea of ResideMenu is from Dribbble 1 and 2. It has come true and run in iOS devices. iOS ResideMenu This project is the RefsideMenu Android version. The visual effect is partly referred to iOS version of ResideMenu. And thanks to the authors for the above idea and contribution. -
android-menudrawer
*DEPRECATED* A slide-out menu implementation, which allows users to navigate between views in your app. -
CircularFloatingActionMenu
an animated circular menu for Android -
FlowingDrawer
swipe display drawer with flowing & bouncing effects. -
BottomSheet
One way to present a set of actions to a user is with bottom sheets, a sheet of paper that slides up from the bottom edge of the screen. Bottom sheets offer flexibility in the display of clear and simple actions that do not need explanation. -
ArcMenu
An android custom view which looks like the menu in Path 2.0 (for iOS). -
Material-BottomNavigation
Bottom Navigation widget component inspired by the Google Material Design Guidelines at https://www.google.com/design/spec/components/bottom-navigation.html -
PowerMenu
:fire: Powerful and modernized popup menu with fully customizable animations. -
LuseenBottomNavigation
BottomNavigationView Designed according Google guideLine -
DropDownMenu
DropDownMenu for Android,Filter the list based on multiple condition. -
ActionsContentView
ActionsContentView is an standalone library implements actions/content swiping view (AKA Side Navigation UI Pattern, AKA Facebook side menu). The library doesn't use any specific code introduced in new Android SDK versions. This allows develop an application with an action/content swiping view for every version of Android from 2.2 and up. -
Android Wheel Menu
Simple and easy to use circular menu widget for Android. -
MultiCardMenu
A multicard menu that can open and close with animation on android -
SideNavigation
Implementation of "Side Navigation" or "Fly-in app menu" pattern for Android (based on Google+ app) -
BlurNavigationDrawer
Android - Blur Navigation Drawer like Etsy app. -
Android-CircleMenu
Menu with items on a rotating circle -
simple-side-drawer
Simple library which enable you to add a drawer(slide-out) navigation to your android application -
GoogleNavigationDrawerMenu
Android Library for a DrawerLayout similar to the one in Google Apps -
android-floating-action-menu
Floating Action Menu for Android. Inspired by the Google Plus floating menu -
Android-NewPopupMenu
Android-NewPopupMenu is an android library to create popup menu with GoogleMusic app-like style. -
Metaball-Menu
A menu consisting of icons (ImageViews) and metaball bouncing selection to give a blob effect. Inspired by Material design -
AndroidPullMenu
An Android Library that allows users to pull down a menu and select different actions. It can be implemented inside ScrollView, GridView, ListView. -
SlidingUpMenu
๐ A very customizable library that allows you to present menu items (from menu resource and/or other sources) to users as a bottom sheet.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SlidingMenu or a related project?
README
SlidingMenu (Play Store Demo)
SlidingMenu is an Open Source Android library that allows developers to easily create applications with sliding menus like those made popular in the Google+, YouTube, and Facebook apps. Feel free to use it all you want in your Android apps provided that you cite this project and include the license in your app.
SlidingMenu is currently used in some awesome Android apps. Here's a list of some of them:
- Foursquare
- Zappos
- Rdio
- Evernote Food
- Plume
- VLC for Android
- ESPN ScoreCenter
- MLS MatchDay
- 9GAG
- Wunderlist 2
- The Verge
- MTG Familiar
- Mantano Reader
- Falcon Pro (BETA)
- MW3 Barracks
If you are using SlidingMenu in your app and would like to be listed here, please let me know via Twitter!
Here's an older video of the example application in this repository : http://youtu.be/8vNaANLHw-c
Also, you can follow the project on Twitter : @SlidingMenu
Setup
- In Eclipse, just import the library as an Android library project. Project > Clean to generate the binaries you need, like R.java, etc.
- Then, just add SlidingMenu as a dependency to your existing project and you're good to go!
Setup with ActionBarSherlock
- Setup as above.
- Checkout a clean copy of ActionBarSherlock and import into your Eclipse workspace.
- Add ActionBarSherlock as a dependency to SlidingMenu
- Go into the SlidingActivities that you plan on using make them extend Sherlock__Activity instead of __Activity.
How to Integrate this Library into Your Projects
In order to integrate SlidingMenu into your own projects you can do one of two things.
1. You can wrap your Activities in a SlidingMenu by constructing it programmatically (new SlidingMenu(Context context)
)
and then calling SlidingMenu.attachToActivity(Activity activity, SlidingMenu.SLIDING_WINDOW | SlidingMenu.SLIDING_CONTENT)
.
SLIDING_WINDOW
will include the Title/ActionBar in the content section of the SlidingMenu, while SLIDING_CONTENT
does not. You can check it out in the example app AttachExample Activity.
2. You can embed the SlidingMenu at the Activity level by making your Activity extend SlidingActivity
.
- In your Activity's onCreate method, you will have to call
setContentView
, as usual, and alsosetBehindContentView
, which has the same syntax as setContentView.setBehindContentView
will place the view in the "behind" portion of the SlidingMenu. You will have access to thegetSlidingMenu
method so you can customize the SlidingMenu to your liking. - If you want to use another library such as ActionBarSherlock, you can just change the SlidingActivities to extend the SherlockActivities instead of the regular Activities.
3. You can use the SlidingMenu view directly in your xml layouts or programmatically in your Java code.
- This way, you can treat SlidingMenu as you would any other view type and put it in crazy awesome places like in the rows of a ListView.
- So. Many. Possibilities.
Simple Example
public class SlidingExample extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTitle(R.string.attach);
// set the content view
setContentView(R.layout.content);
// configure the SlidingMenu
SlidingMenu menu = new SlidingMenu(this);
menu.setMode(SlidingMenu.LEFT);
menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
menu.setShadowWidthRes(R.dimen.shadow_width);
menu.setShadowDrawable(R.drawable.shadow);
menu.setBehindOffsetRes(R.dimen.slidingmenu_offset);
menu.setFadeDegree(0.35f);
menu.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);
menu.setMenu(R.layout.menu);
}
}
XML Usage
If you decide to use SlidingMenu as a view, you can define it in your xml layouts like this:
<com.jeremyfeinstein.slidingmenu.lib.SlidingMenu
xmlns:sliding="http://schemas.android.com/apk/res-auto"
android:id="@+id/slidingmenulayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
sliding:viewAbove="@layout/YOUR_ABOVE_VIEW"
sliding:viewBehind="@layout/YOUR_BEHIND_BEHIND"
sliding:touchModeAbove="margin|fullscreen"
sliding:behindOffset="@dimen/YOUR_OFFSET"
sliding:behindWidth="@dimen/YOUR_WIDTH"
sliding:behindScrollScale="@dimen/YOUR_SCALE"
sliding:shadowDrawable="@drawable/YOUR_SHADOW"
sliding:shadowWidth="@dimen/YOUR_SHADOW_WIDTH"
sliding:fadeEnabled="true|false"
sliding:fadeDegree="float"
sliding:selectorEnabled="true|false"
sliding:selectorDrawable="@drawable/YOUR_SELECTOR"/>
NOTE : you cannot use both behindOffset and behindWidth. You will get an exception if you try.
viewAbove
- a reference to the layout that you want to use as the above view of the SlidingMenuviewBehind
- a reference to the layout that you want to use as the behind view of the SlidingMenutouchModeAbove
- an enum that designates what part of the screen is touchable when the above view is showing. Margin means only the left margin. Fullscreen means the entire screen. Default is margin.behindOffset
- a dimension representing the number of pixels that you want the above view to show when the behind view is showing. Default is 0.behindWidth
- a dimension representing the width of the behind view. Default is the width of the screen (equivalent to behindOffset = 0).behindScrollScale
- a float representing the relationship between the above view scrolling and the behind behind view scrolling. If set to 0.5f, the behind view will scroll 1px for every 2px that the above view scrolls. If set to 1.0f, the behind view will scroll 1px for every 1px that the above view scrolls. And if set to 0.0f, the behind view will never scroll; it will be static. This one is fun to play around with. Default is 0.25f.shadowDrawable
- a reference to a drawable to be used as a drop shadow from the above view onto the below view. Default is no shadow for now.shadowWidth
- a dimension representing the width of the shadow drawable. Default is 0.fadeEnabled
- a boolean representing whether or not the behind view should fade when the SlidingMenu is closing and "un-fade" when openingfadeDegree
- a float representing the "amount" of fade.1.0f
would mean fade all the way to black when the SlidingMenu is closed.0.0f
would mean do not fade at all.selectorEnabled
- a boolean representing whether or not a selector should be drawn on the left side of the above view showing a selected view on the behind view.selectorDrawable
- a reference to a drawable to be used as the selector NOTE : in order to have the selector drawn, you must call SlidingMenu.setSelectedView(View v) with the selected view. Note that this will most likely not work with items in a ListView because of the way that Android recycles item views.
Caveats
- Your layouts have to be based on a viewgroup, unfortunatly this negates the
<merge>
optimisations.
Developed By
- Jeremy Feinstein
License
Copyright 2012-2014 Jeremy Feinstein
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the SlidingMenu README section above
are relevant to that project's source code only.