Android Floating Action Menu

Floating Action Menu for Android. Inspired by the Google Plus floating menu
Alternatives To Android Floating Action Menu
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Search By Image1,695
23 days ago37gpl-3.0JavaScript
Browser extension for reverse image search, available for Chrome, Edge and Safari
Susi_gassistantbot1,086
6 years ago7lgpl-2.1JavaScript
SUSI AI for Google Assistant
Ribbonmenu491
7 years ago9apache-2.0Java
Navigation menu for Android (based off Google+ app)
Sidenavigation327
10 years ago5apache-2.0Java
Implementation of "Side Navigation" or "Fly-in app menu" pattern for Android (based on Google+ app)
Goldenpassport318
a year ago10Objective-C
A native implementation of Google Authenticator for Mac based on Swift
Android Floating Action Menu242
9 years ago6January 12, 20163apache-2.0Java
Floating Action Menu for Android. Inspired by the Google Plus floating menu
Copyissue Xcode Plugin178
4 years agoNovember 28, 20231Objective-C
Makes Copy Xcode Issue Description Easily, Support Finding Answers in Google or StackOverflow Directly
Fitbit For Google App Script139
8 years ago16JavaScript
A Google app script that adds your fitbit data to a google spreadsheet
Libslidemenu102
10 years ago7apache-2.0Java
A sliding menu for Android, as found in the Google+ or Facebook apps.
React Native Single Select8625 months ago37March 17, 2023mitTypeScript
Customizable & Easy to Use Single Select Library for React Native
Alternatives To Android Floating Action Menu
Select To Compare


Alternative Project Comparisons
Readme

android-floating-action-menu

Floating Action Menu for Android. Inspired by the Google Plus floating menu.

Demo

IMAGE ALT TEXT HERE

Setup

The simplest way to use this library is to add the library as a gradle aar dependency to your build. See the CHANGELOG.md for the latest version number.

repositories {
	mavenCentral()
}

dependencies {
	compile 'it.sephiroth.android.library.floatingmenu:floatingmenu:x.x.x' // see changelog
}

Usage

In your activity create a reference to the FloatingMenu:

FloatingActionItem item1 = new FloatingActionItem.Builder(0)
	.withResId(R.drawable.ic_facebook)
	.withDelay(0)
	.withPadding(action_item_padding)
	.build();

FloatingActionItem item2 = new FloatingActionItem.Builder(1)
	.withResId(R.drawable.ic_googleplus)
	.withDelay(50)
	.withPadding(action_item_padding)
	.build();

FloatingActionItem item3 = new FloatingActionItem.Builder(2)
	.withResId(R.drawable.ic_twitter)
	.withDelay(100)
	.withPadding(action_item_padding)
	.build();

mFloatingMenu = new FloatingActionMenu
	.Builder(this)
	.addItem(item1)
	.addItem(item2)
	.addItem(item3)
	.withScrollDelegate(new FloatingActionMenu.AbsListViewScrollDelegate(mListView))
	.withThreshold(R.dimen.float_action_threshold)
	.withGap(R.dimen.float_action_item_gap)
	.withHorizontalPadding(R.dimen.float_action_h_padding)
	.withVerticalPadding(R.dimen.float_action_v_padding)
	.withGravity(FloatingActionMenu.Gravity.CENTER_HORIZONTAL | FloatingActionMenu.Gravity.BOTTOM)
	.withDirection(FloatingActionMenu.Direction.Vertical)
	.animationDuration(300)
	.animationInterpolator(new OvershootInterpolator())
	.visible(visible)
	.build();

mFloatingMenu.setOnItemClickListener(this);

License

Copyright (c) 2014 Alessandro Crugnola

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.
Popular Google Projects
Popular Menu Projects
Popular Companies Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Google
Menu