Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
github.com/blipinsk/RxAnimationBinding
RxJava binding APIs for Android's animations
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!
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
}
});
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();
}
});
Currently I'm working on the Kotlin extension methods for all bindings. Stay tuned!.
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!
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.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.