ExpectAnim icon indicating copy to clipboard operation
ExpectAnim copied to clipboard

Describe your animation and run !

Results 13 ExpectAnim issues
Sort by recently updated
recently updated
newest added

How to set height between view and parent? I tried `Expectations.height(0)`, but it doesn'r recalculate new height: ``` .expect(recyclerView) .toBe( Expectations.belowOf(contentLayout),Expectations.bottomOfParent(), Expectations.height(0) ) ```

1.Added Bezier animation to better integrate with material design 2.Built-in interpolator interface Whether to optimize these two points

I have an activity (which contains the code to enlarge / minimise the layout) with a fragment at the bottom. It works fine with normal views, but if I change...

When I use `width()` with `centerInParent()` or any similar method, the new position does not take in account new width. So instead of becoming center it is slightly misaligned because...

ExpectAnim listener method add removal may be more appropriate? ExpectAnim Listener 或许加上对应的移除方法更合适 Like this : ```java public ExpectAnim removeEndListener(AnimationEndListener listener) { this.endListeners.remove(listener); return this; } public ExpectAnim removeStartListener(AnimationStartListener listener) {...

**outOfScreen** Invalid in **onCreate** method , Need to delay waiting for the layout to finish loading Whether more elegant solutions are available ?

Hi 1- I want to stop it in the middle of the animation In the same state , But how? 2- I want to finish the animation faster than the...

can you add documentation for the project or at-least for the public methods? I have two layouts in a frame layout with both widths as match_parent. I want to animate...

Run soon after the flash and then back to the previous interface,My phone is Samsung 6.0 system

Add Expectations as "setEnabled(boolean enabled)" ``` new ExpectAnim() .expect(mPlayerMediaView) .toBe( Expectations.enable() ) .expect(mPlayerMediaView) .toBe( Expectations.disable() ) ```