{"id":21130125,"url":"https://github.com/szugyi/Android-CircleMenu","last_synced_at":"2025-07-09T01:32:25.318Z","repository":{"id":7361302,"uuid":"8686387","full_name":"szugyi/Android-CircleMenu","owner":"szugyi","description":"Menu with items on a rotating circle","archived":false,"fork":false,"pushed_at":"2023-01-30T10:04:48.000Z","size":2181,"stargazers_count":298,"open_issues_count":11,"forks_count":112,"subscribers_count":27,"default_branch":"master","last_synced_at":"2025-05-25T12:06:49.069Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/szugyi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-10T14:39:03.000Z","updated_at":"2024-09-14T04:00:11.000Z","dependencies_parsed_at":"2023-02-16T06:16:07.044Z","dependency_job_id":null,"html_url":"https://github.com/szugyi/Android-CircleMenu","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/szugyi/Android-CircleMenu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szugyi%2FAndroid-CircleMenu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szugyi%2FAndroid-CircleMenu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szugyi%2FAndroid-CircleMenu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szugyi%2FAndroid-CircleMenu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/szugyi","download_url":"https://codeload.github.com/szugyi/Android-CircleMenu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/szugyi%2FAndroid-CircleMenu/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264375390,"owners_count":23598369,"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.157Z","updated_at":"2025-07-09T01:32:24.747Z","avatar_url":"https://github.com/szugyi.png","language":"Java","funding_links":[],"categories":["Libs"],"sub_categories":["\u003cA NAME=\"Widget\"\u003e\u003c/A\u003eWidget"],"readme":"Circle Menu\n==========\nThis is a simple implementation of a circle menu for Android applications.\n\nDeprecated\n-----------\nConstraintLayout 1.1.0 is now supporting [circular positioning](https://developer.android.com/reference/android/support/constraint/ConstraintLayout.html#CircularPositioning), which makes the use of this library deprecated.\n\nScreenshots\n-----------\n[![Circle menu screenshot](https://github.com/szugyi/CircleMenu/raw/master/screenshots/shot1.png)](#Screenshot)\n\nDownload\n-----------\nGrab via Maven\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.szugyi\u003c/groupId\u003e\n    \u003cartifactId\u003eAndroid-CircleMenu\u003c/artifactId\u003e\n    \u003cversion\u003e2.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\nor Gradle:\n```groovy\ncompile 'com.github.szugyi:Android-CircleMenu:2.0.0'\n```\n\nSnapshots of the development version are available in [Sonatype's `snapshots` repository](https://oss.sonatype.org/content/repositories/snapshots/).\n\nAndroid-CircleMenu requires Android 4.0.\n\nAttributes\n-----------\n* `firstChildPosition` ([`East`, `South`, `West`, `North`]) - The angle where the first child of the CircleLayout will be put. Possible values are: `East` - to the right, `South` - to the bottom, `West` - to the left, `North` - to the top. Default: `South`\n* `isRotating` (boolean) - Determines wether the child views are rotatable or not. Default: true\n* `speed` (integer) - You can set the speed of the rotation. NOTE: The higher the value, the faster the rotation. It must be greater than 0. Values between 10 - 100 should work well. Default: 25\n* `radius` (dimension) - The radius of the circle can be defined using dps or pixels.\n\nEventListeners\n--------------\n* `OnItemClickListener` - Called when a child view is tapped. If the `isRotating` attribute is set to true, then called only if the tapped view is already on the `firstChildPosition`.\n* `OnItemSelectedListener` - If the `isRotating` attribute is set to true, then it is called when the view is rotated to the `firstChildPosition`. Otherwise it is called with the `OnItemClickListener` when the child is tapped.\n* `OnCenterClickListener` - Called when the center of the CircleLayout is tapped.\n* `OnRotationFinishedListener` -  If the `isRotating` attribute is set to true, then it is called when the rotation is finished, and passes the view which is on the `firstChildPosition`. Otherwise it is never called.\n\nChangelog\n---------\nDescription about the changes made to each version of the project can be found in the [CHANGELOG.md](./CHANGELOG.md) file.\n\nCredits\n-------\nSpecial thanks to [Balázs Varga](https://github.com/warnyul), who helped me during the implementation of this custom view.\n\nA lot of code snippets have been used from this great tutorial:\nhttp://mobile.tutsplus.com/tutorials/android/android-sdk-creating-a-rotating-dialer/\n\nThe icons used in the example app are from:\nhttp://flaticons.net/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszugyi%2FAndroid-CircleMenu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fszugyi%2FAndroid-CircleMenu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fszugyi%2FAndroid-CircleMenu/lists"}