{"id":21130123,"url":"https://github.com/sephiroth74/android-floating-action-menu","last_synced_at":"2025-04-06T02:10:41.872Z","repository":{"id":17372517,"uuid":"20144414","full_name":"sephiroth74/android-floating-action-menu","owner":"sephiroth74","description":"Floating Action Menu for Android. Inspired by the Google Plus floating menu","archived":false,"fork":false,"pushed_at":"2015-03-13T01:54:16.000Z","size":382,"stargazers_count":237,"open_issues_count":3,"forks_count":51,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-03-30T01:11:15.293Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sephiroth74.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-05-25T01:59:12.000Z","updated_at":"2025-01-01T22:34:59.000Z","dependencies_parsed_at":"2022-09-24T15:43:29.713Z","dependency_job_id":null,"html_url":"https://github.com/sephiroth74/android-floating-action-menu","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2Fandroid-floating-action-menu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2Fandroid-floating-action-menu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2Fandroid-floating-action-menu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sephiroth74%2Fandroid-floating-action-menu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sephiroth74","download_url":"https://codeload.github.com/sephiroth74/android-floating-action-menu/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247423515,"owners_count":20936626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T05:32:18.122Z","updated_at":"2025-04-06T02:10:41.840Z","avatar_url":"https://github.com/sephiroth74.png","language":"Java","funding_links":[],"categories":["Libs"],"sub_categories":["\u003cA NAME=\"Widget\"\u003e\u003c/A\u003eWidget"],"readme":"android-floating-action-menu\n============================\n\nFloating Action Menu for Android. Inspired by the Google Plus floating menu.\n\nDemo\n====\n\n[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/mLplXAJ5vug/0.jpg)](https://www.youtube.com/watch?v=mLplXAJ5vug\u0026feature=youtu.be)\n\n\nSetup\n=====\n\nThe 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.\n```gradle\nrepositories {\n\tmavenCentral()\n}\n\ndependencies {\n\tcompile 'it.sephiroth.android.library.floatingmenu:floatingmenu:x.x.x' // see changelog\n}\n```\nUsage\n=====\n\nIn your activity create a reference to the `FloatingMenu`:\n\n```java\nFloatingActionItem item1 = new FloatingActionItem.Builder(0)\n\t.withResId(R.drawable.ic_facebook)\n\t.withDelay(0)\n\t.withPadding(action_item_padding)\n\t.build();\n\nFloatingActionItem item2 = new FloatingActionItem.Builder(1)\n\t.withResId(R.drawable.ic_googleplus)\n\t.withDelay(50)\n\t.withPadding(action_item_padding)\n\t.build();\n\nFloatingActionItem item3 = new FloatingActionItem.Builder(2)\n\t.withResId(R.drawable.ic_twitter)\n\t.withDelay(100)\n\t.withPadding(action_item_padding)\n\t.build();\n\nmFloatingMenu = new FloatingActionMenu\n\t.Builder(this)\n\t.addItem(item1)\n\t.addItem(item2)\n\t.addItem(item3)\n\t.withScrollDelegate(new FloatingActionMenu.AbsListViewScrollDelegate(mListView))\n\t.withThreshold(R.dimen.float_action_threshold)\n\t.withGap(R.dimen.float_action_item_gap)\n\t.withHorizontalPadding(R.dimen.float_action_h_padding)\n\t.withVerticalPadding(R.dimen.float_action_v_padding)\n\t.withGravity(FloatingActionMenu.Gravity.CENTER_HORIZONTAL | FloatingActionMenu.Gravity.BOTTOM)\n\t.withDirection(FloatingActionMenu.Direction.Vertical)\n\t.animationDuration(300)\n\t.animationInterpolator(new OvershootInterpolator())\n\t.visible(visible)\n\t.build();\n\nmFloatingMenu.setOnItemClickListener(this);\n```\n\nLicense\n=======\n\n    Copyright (c) 2014 Alessandro Crugnola\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsephiroth74%2Fandroid-floating-action-menu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsephiroth74%2Fandroid-floating-action-menu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsephiroth74%2Fandroid-floating-action-menu/lists"}