ViewPropertyObjectAnimator Library

Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator

Лицензия

Лицензия

Группа

Группа

com.bartoszlipinski
Идентификатор

Идентификатор

viewpropertyobjectanimator
Последняя версия

Последняя версия

1.4.5
Дата

Дата

Тип

Тип

aar
Описание

Описание

ViewPropertyObjectAnimator Library
Wrapper of the ObjectAnimator that can be used similarly to ViewPropertyAnimator
Ссылка на сайт

Ссылка на сайт

https://github.com/blipinsk/ViewPropertyObjectAnimator
Система контроля версий

Система контроля версий

https://github.com/blipinsk/ViewPropertyObjectAnimator

Скачать viewpropertyobjectanimator

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.bartoszlipinski/viewpropertyobjectanimator/ -->
<dependency>
    <groupId>com.bartoszlipinski</groupId>
    <artifactId>viewpropertyobjectanimator</artifactId>
    <version>1.4.5</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.bartoszlipinski/viewpropertyobjectanimator/
implementation 'com.bartoszlipinski:viewpropertyobjectanimator:1.4.5'
// https://jarcasting.com/artifacts/com.bartoszlipinski/viewpropertyobjectanimator/
implementation ("com.bartoszlipinski:viewpropertyobjectanimator:1.4.5")
'com.bartoszlipinski:viewpropertyobjectanimator:aar:1.4.5'
<dependency org="com.bartoszlipinski" name="viewpropertyobjectanimator" rev="1.4.5">
  <artifact name="viewpropertyobjectanimator" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.bartoszlipinski', module='viewpropertyobjectanimator', version='1.4.5')
)
libraryDependencies += "com.bartoszlipinski" % "viewpropertyobjectanimator" % "1.4.5"
[com.bartoszlipinski/viewpropertyobjectanimator "1.4.5"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

ViewPropertyObjectAnimator

Android Arsenal License bintray 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:

    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:

repositories {
    maven { url 'https://dl.bintray.com/blipinsk/maven/' }
}

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.

Версии библиотеки

Версия
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0