{"id":13604866,"url":"https://github.com/ybq/Android-SpinKit","last_synced_at":"2025-04-12T02:32:00.793Z","repository":{"id":37663486,"uuid":"54308113","full_name":"ybq/Android-SpinKit","owner":"ybq","description":"Android  loading animations","archived":false,"fork":false,"pushed_at":"2023-05-28T14:27:04.000Z","size":10241,"stargazers_count":8626,"open_issues_count":64,"forks_count":1309,"subscribers_count":180,"default_branch":"master","last_synced_at":"2024-10-29T15:32:42.727Z","etag":null,"topics":["android-loading","animation","loading","loading-view","progress-bar","spinkit","spinner"],"latest_commit_sha":null,"homepage":"https://ybq.github.io/Android-SpinKit","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ybq.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,"governance":null}},"created_at":"2016-03-20T08:40:51.000Z","updated_at":"2024-10-29T13:15:59.000Z","dependencies_parsed_at":"2022-07-12T16:42:33.750Z","dependency_job_id":"9d9f58c4-3f2b-4bd1-8b68-cff40f1ee6ea","html_url":"https://github.com/ybq/Android-SpinKit","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ybq%2FAndroid-SpinKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ybq%2FAndroid-SpinKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ybq%2FAndroid-SpinKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ybq%2FAndroid-SpinKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ybq","download_url":"https://codeload.github.com/ybq/Android-SpinKit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223062705,"owners_count":17081611,"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":["android-loading","animation","loading","loading-view","progress-bar","spinkit","spinner"],"created_at":"2024-08-01T19:00:52.122Z","updated_at":"2024-11-07T09:31:08.420Z","avatar_url":"https://github.com/ybq.png","language":"Java","readme":"# Android-SpinKit\n\u003eAndroid loading animations(I wrote a android edition according [SpinKit](https://tobiasahlin.com/spinkit))\n\n[Demo Apk](https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/spinkit.apk)\n\n## Preview\n\n\u003cimg src=\"https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/screen.gif\" width=\"240px\" height=\"240px\"/\u003e\n\n\u003cimg src=\"https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/screen2.gif\" width=\"200px\" height=\"200px\"/\u003e\n\n## Gradle Dependency\n\n ``` gradle\ndependencies {\n    implementation 'com.github.ybq:Android-SpinKit:1.4.0'\n }\n ```\n\n\n## Usage\n- Xml\n\n ```xml\n\u003ccom.github.ybq.android.spinkit.SpinKitView\n     xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n     android:id=\"@+id/spin_kit\"\n     style=\"@style/SpinKitView.Large.Circle\"\n     android:layout_width=\"wrap_content\"\n     android:layout_height=\"wrap_content\"\n     android:layout_gravity=\"center\"\n     app:SpinKit_Color=\"@color/colorAccent\" /\u003e         \n```\n \n- ProgressBar\n\n ```java\nProgressBar progressBar = (ProgressBar)findViewById(R.id.progress);\nSprite doubleBounce = new DoubleBounce();\nprogressBar.setIndeterminateDrawable(doubleBounce);\n```\n\n## Style\n\u003e \n ```xml\n@style/SpinKitView\n@style/SpinKitView.Circle\n@style/SpinKitView.Large\n@style/SpinKitView.Small\n@style/SpinKitView.Small.DoubleBounce   \n ```\n\nStyle | Preview\n------------     |   -------------\nRotatingPlane    | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/RotatingPlane.gif' alt='RotatingPlane' width=\"90px\" height=\"90px\"/\u003e\nDoubleBounce     | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/DoubleBounce.gif' alt='DoubleBounce' width=\"90px\" height=\"90px\"/\u003e\nWave             | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/Wave.gif' alt='Wave' width=\"90px\" height=\"90px\"/\u003e\nWanderingCubes   | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/WanderingCubes.gif' alt='WanderingCubes' width=\"90px\" height=\"90px\"/\u003e\nPulse            | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/Pulse.gif' alt='Pulse' width=\"90px\" height=\"90px\"/\u003e\nChasingDots      | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/ChasingDots.gif' alt='ChasingDots' width=\"90px\" height=\"90px\"/\u003e\nThreeBounce      | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/ThreeBounce.gif' alt='ThreeBounce' width=\"90px\" height=\"90px\"/\u003e\nCircle           | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/Circle.gif' alt='Circle' width=\"90px\" height=\"90px\"/\u003e\nCubeGrid         | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/CubeGrid.gif' alt='CubeGrid' width=\"90px\" height=\"90px\"/\u003e\nFadingCircle     | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/FadingCircle.gif' alt='FadingCircle' width=\"90px\" height=\"90px\"/\u003e\nFoldingCube      | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/FoldingCube.gif' alt='FoldingCube' width=\"90px\" height=\"90px\"/\u003e\nRotatingCircle   | \u003cimg src='https://raw.githubusercontent.com/ybq/AndroidSpinKit/master/art/RotatingCircle.gif' alt='RotatingCircle' width=\"90px\" height=\"90px\"/\u003e\n\n\n\n\n\n\n\n## Acknowledgements\n- [SpinKit](https://github.com/tobiasahlin/SpinKit).\n\n\n\n","funding_links":[],"categories":["进度条","Java"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fybq%2FAndroid-SpinKit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fybq%2FAndroid-SpinKit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fybq%2FAndroid-SpinKit/lists"}