MCPcopy Index your code
hub / github.com/0ximDigital/RxAnimations

github.com/0ximDigital/RxAnimations @v0.9.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.9.1 ↗ · + Follow
105 symbols 263 edges 17 files 4 documented · 4% updated 9y ago★ 4671 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

RxAnimations

Download API

RxAnimations is a library with the main goal to make android animations more solid and cohesive.

Download

  compile 'oxim.digital:rxanim:0.9.0'

  compile 'io.reactivex:rxandroid:1.2.1'
  compile 'io.reactivex:rxjava:1.2.5'

RxJava version compatibility:

This RxAnimations library is only compatible with rxJava 1 greater than 1.2.x.
If you are using rxJava 1.1.x version, take a look here.

If you are searching for the one compatible with rxJava 2, take a look over here.

Usage

A sample project which provides code examples that demonstrate uses of the classes in this project is available in the sample-app/ folder.

True power of this library is the ability to use animations as an observable asynchronous action.
That enables us to apply regular rxJava APIs on the animations.

It provides a couple of classes such as RxValueAnimator, RxObservableValueAnimator and RxAnimationBuilder.
Moreover, it also provides many regulary used animation methods (static import) such as fadeIn(), fadeOut(), slideIn(), leave() etc.

Examples:

  • Animating multiple views together
        animateTogether(fadeIn(firstView),
                        fadeIn(secondView));
  • Chaining multiple animations seamlessly
        fadeIn(firstView)
            .concatWith(fadeIn(secondView));
  • Simple ValueAnimator usage with RxValueAnimator
        final ValueAnimator opacityAnimator = ValueAnimator.ofFloat(0.f, 1.f);
        RxValueAnimator.from(opacityAnimator, animator -> view.setAlpha((float)animator.getAnimatedValue()))
  • Animating multiple values together with RxObservableValueAnimator
        xObservableAnimator = RxObservableValueAnimator.from(xAnimator);
        yObservableAnimator = RxObservableValueAnimator.from(yAnimator);

        Observable.combineLatest(xObservableAnimator.schedule(),
                                 yObservableAnimator.schedule(),
                                 (first, second) -> new Pair(first, second))
                  .subscribe(this::updateView);
  • Defining custom animations with RxAnimationBuilder
        RxAnimationBuilder.animate(view, DURATION)
                          .interpolator(INTERPOLATOR)
                          .fadeIn()
                          .rotate(DEGREES)
                          .translateBy(X, Y)
                          ...
                          .schedule([ | false]);

Animation created with RxAnimationBuilder automatically pretransforms the view, if not set otherwise.
I.e. if fadeIn() is called, views opacity will be set to 0.f before animation starts.

Managing animations

Starting animation - Every animation chain is started when we subscribe to it.
Ending animation - Animations can be easily stopped by unsubscribing animation subscription.

LICENSE

Copyright 2016 Mihael Franceković

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.

Extension points exported contracts — how you extend this code

ScopedPresenter (Interface)
(no doc) [1 implementers]
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/ScopedPresenter.java
BaseView (Interface)
(no doc)
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/BaseView.java
ColorPickerContract (Interface)
(no doc)
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/ColorPickerContract.java

Core symbols most depended-on inside this repo

animate
called by 17
rxanim/src/main/java/oxim/digital/rxanim/RxAnimationBuilder.java
schedule
called by 16
rxanim/src/main/java/oxim/digital/rxanim/RxValueAnimator.java
onAnimationCancel
called by 14
rxanim/src/main/java/oxim/digital/rxanim/RxValueAnimator.java
fadeIn
called by 7
rxanim/src/main/java/oxim/digital/rxanim/RxAnimations.java
translateBy
called by 7
rxanim/src/main/java/oxim/digital/rxanim/RxAnimationBuilder.java
set
called by 5
rxanim/src/main/java/oxim/digital/rxanim/RxAnimations.java
duration
called by 5
rxanim/src/main/java/oxim/digital/rxanim/RxAnimationBuilder.java
from
called by 3
rxanim/src/main/java/oxim/digital/rxanim/RxValueAnimator.java

Shape

Method 86
Class 14
Interface 5

Languages

Java100%

Modules by API surface

rxanim/src/main/java/oxim/digital/rxanim/RxAnimationBuilder.java21 symbols
rxanim/src/main/java/oxim/digital/rxanim/RxAnimations.java18 symbols
rxanim/src/main/java/oxim/digital/rxanim/RxObservableValueAnimator.java9 symbols
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/ColorPickerActivity.java8 symbols
rxanim/src/main/java/oxim/digital/rxanim/RxValueAnimator.java7 symbols
rxanim/src/main/java/oxim/digital/rxanim/AnimateOnSubscribe.java7 symbols
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/ColorPickerContract.java6 symbols
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/BasePresenter.java6 symbols
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/ColorPickerPresenter.java4 symbols
rxanim/src/main/java/oxim/digital/rxanim/ClearSubscription.java4 symbols
sample-app/src/main/java/oxim/digital/rxanimations/colorpicker/ScopedPresenter.java3 symbols
sample-app/src/main/java/oxim/digital/rxanimations/MainActivity.java3 symbols

For agents

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

⬇ download graph artifact

Ask about this repo answers extend the page