{"id":21130220,"url":"https://github.com/JesusM/HoloCircleSeekBar","last_synced_at":"2025-07-09T01:32:49.496Z","repository":{"id":6523595,"uuid":"7764555","full_name":"JesusM/HoloCircleSeekBar","owner":"JesusM","description":"Android circle seekbar widget inspired from: https://github.com/LarsWerkman/HoloColorPicker","archived":false,"fork":false,"pushed_at":"2019-11-18T14:35:21.000Z","size":722,"stargazers_count":231,"open_issues_count":8,"forks_count":74,"subscribers_count":14,"default_branch":"master","last_synced_at":"2023-11-07T15:16:11.442Z","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/JesusM.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2013-01-23T00:27:28.000Z","updated_at":"2023-08-26T14:58:11.000Z","dependencies_parsed_at":"2022-08-06T19:15:41.628Z","dependency_job_id":null,"html_url":"https://github.com/JesusM/HoloCircleSeekBar","commit_stats":null,"previous_names":[],"tags_count":1,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JesusM%2FHoloCircleSeekBar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JesusM%2FHoloCircleSeekBar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JesusM%2FHoloCircleSeekBar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JesusM%2FHoloCircleSeekBar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JesusM","download_url":"https://codeload.github.com/JesusM/HoloCircleSeekBar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225476372,"owners_count":17480215,"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:26.459Z","updated_at":"2024-11-20T05:32:34.688Z","avatar_url":"https://github.com/JesusM.png","language":"Java","funding_links":[],"categories":["Libs"],"sub_categories":["\u003cA NAME=\"Widget\"\u003e\u003c/A\u003eWidget"],"readme":"\u003ch1\u003eAndroid HoloCircleSeekBar\u003c/h1\u003e\n\nA Circle SeekBar inspired by Android Holo ColorPicker designed by Marie Schweiz and developed by Lars Werkman.\n\n![image](/images/device-2015-04-08-225534.png)\n![image](/images/device-2015-09-21-225940.png)\n\n\u003ch2\u003eHow to integrate in your proyect\u003c/h2\u003e\n\nImport it on your **build.gradle**\n\n```\nrepositories {\n    maven {\n\t    url \"https://jitpack.io\"\n    }\n}\n\ndependencies {\n    compile 'com.github.JesusM:HoloCircleSeekBar:v2.2.2'\n}\n```\n\n\n\u003ch2\u003eDocumentation\u003c/h2\u003e\nTo add the widget, you only need to add this to your xml:\n\n    \u003ccom.jesusm.holocircleseekbar.lib.HoloCircleSeekBar\n        android:layout_centerInParent=\"true\"\n        android:id=\"@+id/picker\"\n        android:layout_width=\"285dp\"\n        android:layout_height=\"290dp\"\n        app:max=\"100\"\n        app:pointer_color=\"@color/point_color\"\n        app:pointer_halo_color=\"@color/point_halo_color\"\n        app:pointer_size=\"20dp\"\n        app:text_color=\"@color/text_color\"\n        app:text_size=\"65sp\"\n        app:wheel_active_color=\"@color/wheel_active_color\"\n        app:wheel_unactive_color=\"@color/wheel_unactive_color\"/\u003e\n\nDon't forget to add this at the root of your View in the xml layout to use the custom attributes:\n\n\txmlns:app=\"http://schemas.android.com/apk/res-auto\"\n        \nYou can change some widget components (text size, wheel color, point color, etc) sith this attrs.\n \n        app:max=\"100\"\n        app:pointer_color=\"#0174DF\"\n        app:pointer_halo_color=\"#88252525\"\n        app:pointer_size=\"34\"\n        app:text_color=\"#FF0000\"\n        app:text_size=\"65\"\n        app:wheel_active_color=\"#00BFFF\"\n        app:wheel_unactive_color=\"#FFCCCCCC\" \n\nTo get the value of the circle seekbar\n\n\tHoloSeekBar picker = (HoloSeekBar) findViewById(R.id.picker);\n\tpicker.getValue();\n\t\n\u003cH2\u003eLicense\u003c/H2\u003e\n\t\n \t Copyright 2012 Jesús Manzano\n \t\n \t Licensed under the Apache License, Version 2.0 (the \t\"License\");\n \t you may not use this file except in compliance with \tthe License.\n \t You may obtain a copy of the License at\n \t\n \t     http://www.apache.org/licenses/LICENSE-2.0\n \t\n \t Unless required by applicable law or agreed to in \twriting, software\n\t distributed under the License is distributed on an \t\"AS IS\" BASIS,\n \t WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, \teither express or implied.\n \t See the License for the specific language governing \tpermissions and\n \t limitations under the License.\n \t\n \t\n\u003ch2\u003eOriginal by\u003c/h2\u003e\n**Lars Werkman**\n\n\u003ch2\u003eModified By\u003c/h2\u003e\n**Jesús Manzano**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJesusM%2FHoloCircleSeekBar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJesusM%2FHoloCircleSeekBar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJesusM%2FHoloCircleSeekBar/lists"}