MCPcopy Index your code
hub / github.com/blipinsk/ViewPropertyObjectAnimator

github.com/blipinsk/ViewPropertyObjectAnimator @1.5.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release 1.5.0 ↗ · + Follow
227 symbols 542 edges 8 files 8 documented · 4% updated 2y ago1.5.0 · 2021-10-30★ 3442 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

ViewPropertyObjectAnimator

Android Arsenal License maven-central

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 .

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:

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

dependencies {
    implementation "com.bartoszlipinski:viewpropertyobjectanimator:1.5.0"
}

Developed by

  • Bartosz Lipiński

License

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.

Core symbols most depended-on inside this repo

get
called by 31
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java
initPercentListener
called by 22
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java
calculateAnimatedValue
called by 19
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ChangeUpdateListener.java
initMarginListener
called by 14
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java
initPaddingListener
called by 14
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java
hasView
called by 13
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ChangeUpdateListener.java
animateProperty
called by 12
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java
animatePropertyBy
called by 12
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java

Shape

Method 217
Class 10

Languages

Java100%

Modules by API surface

viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ViewPropertyObjectAnimator.java119 symbols
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/PercentChangeListener.java32 symbols
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/PaddingChangeListener.java21 symbols
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/MarginChangeListener.java21 symbols
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/DimensionChangeListener.java11 symbols
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ScrollChangeListener.java9 symbols
viewpropertyobjectanimator/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/ChangeUpdateListener.java8 symbols
sample/src/main/java/com/bartoszlipinski/viewpropertyobjectanimator/sample/activity/MainActivity.java6 symbols

For agents

$ claude mcp add ViewPropertyObjectAnimator \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact