ExpectAnim


Source link: https://github.com/florent37/ExpectAnim/

ExpectAnim

Describe your animation and run !

new ExpectAnim()

.expect(avatar)

  .toBe(

Expectations...

  )

  .toAnimation()

  .start();

Download

In your module

compile 'com.github.florent37:expectanim:1.0.7'

This code describe the video above

new ExpectAnim()

.expect(avatar)

  .toBe(

 bottomOfParent().withMarginDp(16),

 leftOfParent().withMarginDp(16),

 width(40).toDp().keepRatio()

  )

.expect(name)

  .toBe(

 toRightOf(avatar).withMarginDp(16),

 sameCenterVerticalAs(avatar),

 toHaveTextColor(Color.WHITE)

  )

.expect(subname)

  .toBe(

 toRightOf(name).withMarginDp(5),

 sameCenterVerticalAs(name),

 toHaveTextColor(Color.WHITE)

  )

.expect(follow)

  .toBe(

 rightOfParent().withMarginDp(4),

 bottomOfParent().withMarginDp(12),

 toHaveBackgroundAlpha(0f)

  )

.expect(message)

  .toBe(

 aboveOf(follow).withMarginDp(4),

 rightOfParent().withMarginDp(4),

 toHaveBackgroundAlpha(0f)

  )

.expect(bottomLayout)

  .toBe(

 atItsOriginalPosition()

  )

.expect(content)

  .toBe(

 atItsOriginalPosition(),

 visible()

  )

.toAnimation()

  .setDuration(1500)

.start();

Follow scroll

Use setPercent to apply modify the current step of the animation

Exemple with a scrollview

this.expectAnimMove = new ExpectAnim()

  .expect(username)

  .toBe(

 toRightOf(avatar).withMarginDp(16),

 sameCenterVerticalAs(avatar),

 alpha(0.5f)

  )

.expect(avatar)

  .toBe(

 topOfParent(),

 leftOfParent().withMarginDp(16),

 scale(0.5f, 0.5f)

  )

  .expect(follow)

  .toBe(

 rightOfParent().withMarginDp(16),

 sameCenterVerticalAs(avatar)

  )

.expect(backbground)

  .toBe(

 height(height).withGravity(Gravity.LEFT|Gravity.START, Gravity.TOP)

  )

.toAnimation();
  scrollView.setOnScrollChangeListener(new NestedScrollView.OnScrollChangeListener() {

  @Override
  public void onScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {

final float percent = (scrollY * 1f) / v.getMaxScrollAmount();

 expectAnimMove.setPercent(percent);

  
}
 
}
);

Concat

You can play an anim after one other using ExpectAnim.concat (static method)

ExpectAnim.concat(

  new ExpectAnim()

 .expect(image1)

 .toBe(

withCameraDistance(500f),

flippedHorizontally()

 )

 .toAnimation()

 .setDuration(1000),

  new ExpectAnim()

 .expect(image2)

 .toBe(

withCameraDistance(1000f),

flippedVertically()

 )

 .toAnimation()

 .setDuration(500)

  )

  .start() 

Apply directly

Use setNow to apply directly the transformation

new ExpectAnim()

  .expect(view)

  .toBe(

 outOfScreen(Gravity.BOTTOM)

  )

  .toAnimation()

  .setNow();

Reset

Use reset to return to the initial state of views

expectAnim.reset():

List of expectations

new ExpectAnim()

  .expect(view)

  .toBe(

 //.withMargin(marginPx)

//.withMarginDp(margin)

//.withMarginDimen(R.dimen.margin)

 toRightOf(view)

toLeftOf(view)

belowOf(view)

aboveOf(view)

 atItsOriginalPosition()

  sameCenterAs(view, horizontal, vertical)

sameCenterHorizontalAs(view)

sameCenterVerticalAs(view)

centerInParent(horizontal, vertical)

centerVerticalInParent()

centerHorizontalInParent()

 centerBetweenViews(view1, view2, horizontal, vertical)

centerBetweenViewAndParent(otherView, horizontal, vertical, toBeOnRight, toBeOnBottom)

 topOfParent()

rightOfParent()

bottomOfParent()

leftOfParent()

 alignBottom(otherView)

alignTop(otherView)

alignLeft(otherView)

alignRight(otherView)

 outOfScreen(gravitiy)  //Gravity.LEFT / Gravity.RIGHT / Gravity.TOP / Gravity.BOTTOM

 alpha(alpha)

sameAlphaAs(otherView)

visible()

invisible()

 //.keepRatio()

//.withGravity(horizontalGravity, verticalGravity)

 atItsOriginalScale()

 scale(scaleX, scaleY)

height(height)

width(width)

sameScaleAs(otherView)

sameWidthAs(otherView)

sameHeightAs(otherView)

  toHaveTextColor(textColor)

toHaveBackgroundAlpha(alpha)

 rotated(rotation)

vertical(bottomOfViewAtLeft)

atItsOriginalRotation()

  )  

Proguard

-keep class com.github.florent37.expectanim.*{
 *; 
}
 -dontwarn com.github.florent37.expectanim.** 

Changelog

1.0.7

Added startDelay

1.0.6

Added ExpectAnim.concat

1.0.4

Fixed listeners references

1.0.3

Alpha 0 force view to be INVISIBLE`

1.0.2

Added flips rotations

flippedHorizontally() flippedVertically() flippedHorizontallyAndVertically() withCameraDistance(1000f)

1.0.1

Added rotations

Credits

Author: Florent Champigny http://www.florentchampigny.com/ Blog : http://www.tutos-android-france.com/

License

Copyright 2017 florent37, Inc.  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. 

Resources

Implementation of Material Design Chips component for Android.


InstaChat offers a revolutionary way to read messages of your favourite messengers. It overlays every other app and you can reply from anywhere you want. Sometimes you did not want to quit your current app but also need to read some important messages or reply to them. Thats the point where InstaChat will help you. Use floating chatHeads bubbles like in Facebook for Whatsapp, Telegram and others!

The library is a DrawerLayout-like ViewGroup, where a "drawer" is hidden under the content view, which can be shifted to make the drawer visible.

A custom keyboard for number.

This lightweight library provides visual alerts to developers and QA when an issue happens during development / testing phase.

In traditional android development, when an issue occurs, we use logs to dump the unexpected state or exception trace. Printing to logcat is not enough at times as:

  • Logs can be overlooked by developers if we are not constantly monitoring.
  • Logs maybe on a remote device which is inaccessible.

Using this library, you can provide visual warning to the developer / QA when something goes wrong on your test or internal builds so that critical issues can be highlighted as and when they happen.

Easily add four tabbed bottom navigation bar in your app.

This library aids in adding four tabs in Bottom Navigation Bar, as easily and fast as possible. Th result looks like as it is commonly found in most of the apps, like Quora and others.

Point to note: This library is significantly different from what Google has provided for Android Developers. The official Bottom Navigation Bar from Google doesn't show text when it has 4 tabs. But this library shows icon and text with four bottom bars.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes