Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blipinsk/viewpropertyobjectanimator
Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator
https://github.com/blipinsk/viewpropertyobjectanimator
android android-animations animation
Last synced: 1 day ago
JSON representation
Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator
- Host: GitHub
- URL: https://github.com/blipinsk/viewpropertyobjectanimator
- Owner: blipinsk
- License: apache-2.0
- Created: 2015-09-22T09:57:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T05:59:23.000Z (over 1 year ago)
- Last Synced: 2024-11-13T20:05:58.650Z (1 day ago)
- Topics: android, android-animations, animation
- Language: Java
- Size: 181 KB
- Stars: 347
- Watchers: 12
- Forks: 29
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
ViewPropertyObjectAnimator
==================[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ViewPropertyObjectAnimator-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/2625)
[![License](https://img.shields.io/github/license/blipinsk/RecyclerViewHeader.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
[![](https://jitpack.io/v/blipinsk/ViewPropertyObjectAnimator.svg)](https://jitpack.io/#blipinsk/ViewPropertyObjectAnimator)
[![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)Wrapper of the `ObjectAnimator` that can be used similarly to `ViewPropertyAnimator`.
`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`).
Additionally `ViewPropertyObjectAnimator` lets you animate `View's` `dimensions`, `padding`, `margin` and `scroll`.
`ViewPropertyObjectAnimator` can be also used to animate `percent` parameters from [Percent AndroidX Library ](https://developer.android.com/jetpack/androidx/releases/percentlayout).
Usage
=====To obtain an `ObjectAnimator` object:
1. Use the static `animate(View view)` method of the `ViewPropertyObjectAnimator`
2. Call specific `ViewPropertyObjectAnimator` methods to setup an animation of desired properties (just like you would when using `ViewPropertyAnimator`)
3. Call `get()` method, like so:```java
ObjectAnimator animator = ViewPropertyObjectAnimator
.animate(mView)
.withLayer()
.alpha(0f)
.scaleX(0f)
.scaleY(0f)
.scrollY(100)
.height(200)
.topPaddingBy(10)
.setDuration(300)
.setInterpolator(new AnticipateInterpolator())
.get();
```Including In Your Project
-------------------------
Add in your `build.gradle`:
```xml
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}dependencies {
implementation "com.bartoszlipinski:viewpropertyobjectanimator:1.5.0"
}
```Developed by
============
* Bartosz LipińskiLicense
=======Copyright 2015 Bartosz Lipiński
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.