{"id":21130007,"url":"https://github.com/blipinsk/ViewPropertyObjectAnimator","last_synced_at":"2025-07-09T01:31:58.764Z","repository":{"id":39042598,"uuid":"42925886","full_name":"blipinsk/ViewPropertyObjectAnimator","owner":"blipinsk","description":"Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator","archived":false,"fork":false,"pushed_at":"2023-07-19T05:59:23.000Z","size":185,"stargazers_count":347,"open_issues_count":2,"forks_count":29,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-05-25T05:08:07.635Z","etag":null,"topics":["android","android-animations","animation"],"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/blipinsk.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-22T09:57:01.000Z","updated_at":"2025-03-17T16:17:59.000Z","dependencies_parsed_at":"2024-10-30T19:04:25.900Z","dependency_job_id":"6b077d94-5abf-45f7-8b10-3a8900e8a8ff","html_url":"https://github.com/blipinsk/ViewPropertyObjectAnimator","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/blipinsk/ViewPropertyObjectAnimator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blipinsk%2FViewPropertyObjectAnimator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blipinsk%2FViewPropertyObjectAnimator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blipinsk%2FViewPropertyObjectAnimator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blipinsk%2FViewPropertyObjectAnimator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blipinsk","download_url":"https://codeload.github.com/blipinsk/ViewPropertyObjectAnimator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blipinsk%2FViewPropertyObjectAnimator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264375324,"owners_count":23598359,"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","android-animations","animation"],"created_at":"2024-11-20T05:32:10.546Z","updated_at":"2025-07-09T01:31:58.463Z","avatar_url":"https://github.com/blipinsk.png","language":"Java","funding_links":[],"categories":["Libs"],"sub_categories":["\u003cA NAME=\"Animations\"\u003e\u003c/A\u003eAnimations"],"readme":"ViewPropertyObjectAnimator\n==================\n\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ViewPropertyObjectAnimator-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/2625)\n[![License](https://img.shields.io/github/license/blipinsk/RecyclerViewHeader.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)\n[![](https://jitpack.io/v/blipinsk/ViewPropertyObjectAnimator.svg)](https://jitpack.io/#blipinsk/ViewPropertyObjectAnimator)\n[![maven-central](https://img.shields.io/maven-central/v/com.bartoszlipinski/viewpropertyobjectanimator?label=maven-central) ](https://search.maven.org/search?q=g:com.bartoszlipinski%20AND%20a:viewpropertyobjectanimator)\n\nWrapper of the `ObjectAnimator` that can be used similarly to `ViewPropertyAnimator`.\n\n`ViewPropertyObjectAnimator` is as easy to use as `ViewPropertyAnimator` and (unlike `ViewPropertyAnimator`) lets you utilize all the awesome features that `ObjectAnimator` allows (e.g. it can be used inside `AnimatorSet`).\n\nAdditionally `ViewPropertyObjectAnimator` lets you animate `View's` `dimensions`, `padding`, `margin` and `scroll`.\n\n`ViewPropertyObjectAnimator` can be also used to animate `percent` parameters from [Percent AndroidX Library ](https://developer.android.com/jetpack/androidx/releases/percentlayout).\n\nUsage\n=====\n\nTo obtain an `ObjectAnimator` object:\n\n  1. Use the static `animate(View view)` method of the `ViewPropertyObjectAnimator`\n  2. Call specific `ViewPropertyObjectAnimator` methods to setup an animation of desired properties (just like you would when using `ViewPropertyAnimator`)\n  3. Call `get()` method, like so:\n\n      ```java\n      ObjectAnimator animator = ViewPropertyObjectAnimator\n              .animate(mView)\n              .withLayer()\n              .alpha(0f)\n              .scaleX(0f)\n              .scaleY(0f)\n              .scrollY(100)\n              .height(200)\n              .topPaddingBy(10)\n              .setDuration(300)\n              .setInterpolator(new AnticipateInterpolator())\n              .get();\n        ```\n\n\nIncluding In Your Project\n-------------------------\nAdd in your `build.gradle`:\n```xml\nallprojects {\n  repositories {\n    ...\n    maven { url 'https://jitpack.io' }\n  }\n}\n\ndependencies {\n    implementation \"com.bartoszlipinski:viewpropertyobjectanimator:1.5.0\"\n}\n```\n\nDeveloped by\n============\n * Bartosz Lipiński\n\nLicense\n=======\n\n    Copyright 2015 Bartosz Lipiński\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%2Fblipinsk%2FViewPropertyObjectAnimator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblipinsk%2FViewPropertyObjectAnimator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblipinsk%2FViewPropertyObjectAnimator/lists"}