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 .
To obtain an ObjectAnimator object:
animate(View view) method of the ViewPropertyObjectAnimatorViewPropertyObjectAnimator methods to setup an animation of desired properties (just like you would when using ViewPropertyAnimator)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();
Add in your build.gradle:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation "com.bartoszlipinski:viewpropertyobjectanimator:1.5.0"
}
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 at
http://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.
$ claude mcp add ViewPropertyObjectAnimator \
-- python -m otcore.mcp_server <graph>