rxanimationbinding

RxJava binding APIs for Android's animations

License

License

The Apache Software License, Version 2.0
GroupId

GroupId

com.bartoszlipinski
ArtifactId

ArtifactId

rxanimationbinding
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

rxanimationbinding
RxJava binding APIs for Android's animations
Project URL

Project URL

https://github.com/blipinsk/RxAnimationBinding
Source Code Management

Source Code Management

https://github.com/blipinsk/RxAnimationBinding.git

Download rxanimationbinding

How to add to project

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

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

RxAnimationBinding

License Maven Central Bintray Android Arsenal

RxJava binding APIs for Android's animations

Usage

Base platform bindings:

compile 'com.bartoszlipinski.rxanimationbinding:rxanimationbinding:1.1.0'

Contents: RxAnimation, RxAnimator, RxValueAnimator, RxViewPropertyAnimator, RxTransition and RxAnimatable2.

==

support-v4 library bindings:

compile 'com.bartoszlipinski.rxanimationbinding:rxanimationbinding-support-v4:1.1.0'

Contents: RxViewPropertyAnimatorCompat.

==

For a working implementation of this library see the sample/ folder.

Remember to unsubscribe your subscriptions when you're done with them!

Simple examples

  1. ViewPropertyAnimator

    ViewPropertyAnimator animator = yourView.animate().scaleX(1.3f);
    
    RxViewPropertyAnimator.updates(animator)
            .subscribe(new Action1<ValueAnimator>() {
                @Override
                public void call(ValueAnimator valueAnimator) {
                    //react to an update
                }
            });  
    
  2. ValueAnimator

    ValueAnimator animator = ValueAnimator.ofInt(4, 8, 15, 16, 23, 42);
    animator.setDuration(108);
    animator.setRepeatCount(ValueAnimator.INFINITE);
    
    RxValueAnimator.repeats(animator)
            .subscribe(new Action1<Animator>() {
                @Override
                public void call(Animator animator) {
                    pressTheExecuteButton();
                }
            });
    RxValueAnimator.cancels(animator)
            .subscribe(new Action1<Animator>() {
                @Override
                public void call(Animator animator) {
                    systemFailure();
                }
            });
    

Ongoing development

Currently I'm working on the Kotlin extension methods for all bindings. Stay tuned!.

Credits

This library has been both inspired and (let’s not lie to ourselves) heavily influenced by Jake Wharton’s RxBinding.

Few classes come directly from the library (I hope I marked them all). All credits for those go to Jake and all other contributors of RxBinding.

Thanks!

License

Copyright 2016 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.

Versions

Version
1.0.0
1.0.0-beta2
1.0.0-beta1