{"id":18270210,"url":"https://github.com/Sefford/CircularProgressDrawable","last_synced_at":"2025-04-04T23:31:52.796Z","repository":{"id":17758095,"uuid":"20613327","full_name":"Sefford/CircularProgressDrawable","owner":"Sefford","description":"A drawable with capabilities to indicate progress.","archived":false,"fork":false,"pushed_at":"2015-04-27T14:35:20.000Z","size":12176,"stargazers_count":802,"open_issues_count":4,"forks_count":191,"subscribers_count":40,"default_branch":"master","last_synced_at":"2024-11-05T11:52:32.299Z","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/Sefford.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":"2014-06-08T09:06:54.000Z","updated_at":"2024-06-10T15:59:15.000Z","dependencies_parsed_at":"2022-08-04T21:02:45.496Z","dependency_job_id":null,"html_url":"https://github.com/Sefford/CircularProgressDrawable","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sefford%2FCircularProgressDrawable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sefford%2FCircularProgressDrawable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sefford%2FCircularProgressDrawable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sefford%2FCircularProgressDrawable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sefford","download_url":"https://codeload.github.com/Sefford/CircularProgressDrawable/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247266476,"owners_count":20910831,"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-05T11:38:24.831Z","updated_at":"2025-04-04T23:31:47.781Z","avatar_url":"https://github.com/Sefford.png","language":"Java","readme":"CircularProgressDrawable\n========================\n\nA drawable with capabilities to indicate progress.\n\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-CircularProgressDrawable-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1071)\n\nWhy a drawable?\n---------------\n\nIf you want to achieve interesting effects and animations on Android, a surprisingly easy and fast\nway to achieve it is subclassing a Drawable instead of subclassing a Button or an ImageView.\n\nIn order to implement advanced behavior over the Drawable, you can still implement your own animations\nby using Android animations framework or by the use of listeners on the views you are using.\n\nDownload\n--------\n\n### Bundle\n\nCircularProgressDrawable comes bundled in `aar` format. Grab the latest bundle from [here](http://search.maven.org/remotecontent?filepath=com/sefford/circular-progress-drawable/1.3/circular-progress-drawable-1.3.aar)\n\n### Maven\n\n```XML\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.sefford\u003c/groupId\u003e\n    \u003cartifactId\u003ecircular-progress-drawable\u003c/artifactId\u003e\n    \u003cversion\u003e1.31\u003c/version\u003e\n    \u003ctype\u003eaar\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle \n\n```groovy\ncompile 'com.sefford:circular-progress-drawable:1.31@aar'\n```\n\nComposition\n-----------\n\nThe Circular Progress Drawable is made out of three differentiated components:\n\n* The first one is what is known as the *inner circle*. The radius of the drawable and can be scaled up and down to achieve a progress effect or to serve a background for a TextView on top to indicate its meaning. \n* The next is the *outline ring*. This ring will surround the inner circle and it is intended as\n a subtle cue of the empty state of the progress.\n* The last is the *outer ring*. It will be used for several purposes. The first is to show the progress\nof the drawable. In the current version, the progress ring is filled from the bottom and counter-clockwise.\n\nUsage\n-----\nCircular Progress Drawable can be defined programatically and the only parameters it will require\nwill be the different colours and the size of the outer ring.\n\nScale Property for the inner ring can be used to achieve a variety of effects, as pulsating effects, overshoot\nor to make it disappear completely.\n\nThe drawable allows both for a progress and an indetermination mode. In the indetermination mode\ninstead of filling the outer ring, a 90º arc will be shown that can be animated to spin around the\ninner circle.\n\n![Overshoot Example](overshoot.gif) ![Colorfill Example](colorfill.gif)\n\nTips\n----\n\n* Take advantage of the Android Animators to achieve a variety of effects around Circular Progress Drawable.\n* If you want more interesting feedback you can use *onTouchListeners* over your View. \n* Have a look at the sample for some ideas.\n\nProguard\n--------\n\nIf you rely on Animators for animation and your application is obfuscated using Proguard, be advised\nthat your Circular Progress Drawable animations could stop working. In order to avoid that add\n`-keepclassmembers class com.sefford.circularprogressdrawable.CircularProgressDrawable { *;}`\nto your proguard.conf file.\n\nLicense\n-------\n    Copyright 2014 Sefford.\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\n\n\n\n","funding_links":[],"categories":["etc"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSefford%2FCircularProgressDrawable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSefford%2FCircularProgressDrawable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSefford%2FCircularProgressDrawable/lists"}