DexMovingImageView


Source link: https://github.com/dexlex/DexMovingImageView

DexMovingImageView

DMIV aims to provide a flexible and customizable instrument for automated images moving on display. It provides scroll, gyroscope or time based moving. But you can create your own evaluator.

Features

  • Google Calendar ImageView
  • Google NewsStand Moving ImageView
  • Structured system to create your own objects or use the ones provided
  • Flexible way to create your own effect
  • Android 1.5+ support

Upcoming Changes

  • Ken Burns Effect

Downloads

Setup

DexMovingImageView is pushed to Maven Central as an AAR. Add the following to build.gradle.

 dependencies {

compile 'it.dex.dexmovingimageview:dexmovingimageviewlib:0.1.0'
  
}

or the following using Maven:

 <dependency>

<groupid>it.dex.dexmovingimageview</groupid>

<artifactid>dexmovingimageviewlib</artifactid>

<version>0.1.0</version>

<type>aar</type>
  </dependency>

Usage

##Simple

This section show you how to use the provided views without questioning how it works.

This library provides 2 views:

  • DexCrossFadeImageView: It allows you to add a fading transition when changing the source drawable with specified transition duration in milliseconds. It also provides a way to slideshow multiple images;
  • DexMovingImageView: It extends the DexCrossFadeImageView, so it inherits every property from it and add lots of new features.

###DexCrossFadeImageView The view has 2 parameters:

  • TransitionDurationMillis (default: 300)
  • StillImageDurationMillis (default: 3000)

They both have their own getters and setters. ####Single Image First of all you can set your timings, if needed. Then you can start a transition by calling the following methods:

 dexCrossFadeImageView.setFadingImageResource(R.drawable.my_image);

  dexCrossFadeImageView.setFadingImageDrawable(myDrawable);

  dexCrossFadeImageView.setFadingImageBitmap(myBitmap);

####Multiple Images Or you can set a List or an array of:

  • Resources (integers)
  • Drawables
  • Bitmaps

and then call the start() or start(int transitionDurationMillis, int stillImageTransitionMillis) methods. You can do the same using the images_array attribute:

 <it.dex.movingimageviewlib.DexCrossFadeImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:src="@drawable/my_image"

dex:images_array="@array/my_images"

dex:loop="true"

dex:still_image_duration_millis="1000"

dex:transition_duration_millis="500" />

You can pause the transition by calling the pause() method.

###DexMovigImageView

You can treat it like any other ImageView or DexCrossFadeImageView, but you need to add the following to set the desired behaviour:

  • Evaluator
  • ValuesGenerator
  • Drawers

The next two subsections show you how to add two popular view in your app.

####Calendar-like View This is the simplest way to use it. Simply add the following attributes to your view:

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_height="wrap_content"

android:layout_width="wrap_content"

dex:zoom="2.0"

dex:evaluator="scrollBased"

dex:generator="base"

dex:drawer="scale|translate" />

Change zoom value to increase or decrease scaling: this way you can enhance the scrolling effect.

####NewsStand-like View This is the same as above, but with different evaluator and generator:

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

dex:evaluator="timeBased"

dex:images_array="@array/my_images"

dex:generator="zoomed"

dex:angle="130"

dex:loop="true"

dex:zoom="1.65"

dex:drawer="scale|translate"

dex:still_image_duration_millis="3000"

dex:transition_duration_millis="1000" />

Use the OnEventOccurred interface to listen to every change during execution. You can set a new CrossFading image or change tint or change angle, etc. The events returned are:

  1. START
  2. FIRST QUARTER
  3. MIDDLE
  4. THIRD QUARTER
  5. END
 @Override
  public void onEventOccurred(View view, Evaluator evaluator, Evaluator.EVENT_STATUS eventStatus, int occurrenceCount) {

switch (eventStatus) {

 case FIRST_QUARTER:

  //Your code here:

  break;

 case THIRD_QUARTER:

  //Your code here:

  break;

 case END:

  //Your code here:

  break;

 case MIDDLE:

  //Your code here:

  break;

}

  
}

##Advanced This section show you how to add any new unimplemented feature. First af all you need to know how it works: a DexMovingImageView is composed by 3 main elements that describe how to do something:

  1. Evaluators (only one at a time): they describe what originates the basic values;
  2. Values Generators (only one at a time): they describe how to modify the basic values coming from evaluators:
  3. Drawers (one or more): they describe what property change must be applied to the view.

Everytime the view is invalidated, the evaluator evaluate new basic values, ValuesGenerator changes them and drawer apply the new values to the view.

###Evaluators

Currently there are 4 kind of evaluator in this library:

  • Simple: It always returns the default values, so the single property can be applied based on what drawers you use;
  • Scroll: It returns the position of the view relative to the display (the left top corner coordinates);
  • Time: It returns increasing values from 0 to 360, based on a speed values;
  • Gyroscope: It returns x, y, z values from Gyroscope.

You can create your own Evaluator by extending the Evaluator class and implementing the following methods:

 @Override
  protected void onCreate(View view) {

//Your Code here
  
}

@Override
  public float evaluateX(View view) {

//Your Code here

return x;
  
}

@Override
  public float evaluateY(View view) {

//Your Code here

return y;
  
}

@Override
  protected void onDestroy(View view) {

//Your Code here
  
}

An evaluator has its lifecycle, so you can optimize the use of any external services or API you use: For example: for the TimeEvaluator a TimerTask is started in the onCreate() method and it's stopped in the onDestroy() one. You don't have to worry about calling this methods because the superclass does it for you. If you need to start or stop those APIs you used, you can call the start() and stop() methods.

The following methods are not abstract and their default implementation returns the default values set to the view:

 @Override
  public float evaluateAngle(View view, float defaultAngle) {

//Your Code here
  
}

@Override
  public float evaluateZoom(View view, float defaultZoom) {

//Your Code here
  
}

You should also find a way to call the OnEventOccurred implementation:

 if (getOnEventOccurred() != null && isNotifyEvent()) {

if (someClause) {

 getOnEventOccurred().onEventOccurred(getView(), this, EVENT_STATUS.END, ++endLoopCount);

}
 else if (someOtherClause) {

 getOnEventOccurred().onEventOccurred(getView(), this, EVENT_STATUS.START, ++startLoopCount);

}
 else if (someOtherClause) {

 getOnEventOccurred().onEventOccurred(getView(), this, EVENT_STATUS.MIDDLE, ++middleLoopCount);

}
 else if (someOtherClause) {

 getOnEventOccurred().onEventOccurred(getView(), this, EVENT_STATUS.FIRST_QUARTER, ++firstQuarterLoopCount);

}
 else if (someOtherClause) {

 getOnEventOccurred().onEventOccurred(getView(), this, EVENT_STATUS.THIRD_QUARTER, ++secondQuarterLoopCount);

}

  
}

A DexMovingImageView has one only Evaluator, so you can specify the enum value or the complete class path inside xml file:

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:src="@drawable/my_image"

dex:evaluator="timeBased"

dex:images_array="@array/my_images"

dex:generator="zoomed"

dex:angle="130"

dex:loop="true"

dex:zoom="1.65"

dex:drawer="scale|translate"

dex:still_image_duration_millis="3000"

dex:transition_duration_millis="1000" />

or

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:src="@drawable/my_image"

dex:evaluator="it.dex.movingimageview.MyEvaluator"

dex:images_array="@array/my_images"

dex:generator="zoomed"

dex:angle="130"

dex:loop="true"

dex:zoom="1.65"

dex:drawer="scale|translate"

dex:still_image_duration_millis="3000"

dex:transition_duration_millis="1000" />

###Values Generators

The provided values generators are:

  • Base: It generates x and y values;
  • Angled: It generates the same Base values, plus Angle values;
  • ZoomedAngled: It generates the same as Angled, but it generates zoom values too.

A Generator deals with manipulating values to return the desired one using some sort of logical pattern. To create your own Generator your class must extend the ValuesGenerator one and implement the following methods:

 @Override
  public float getX(float x) {

//Your Code here

return newX;
  
}

@Override
  public float getY(float y) {

//Your Code here

return newY;
  
}

@Override
  public float getAngle(float angle, float defaultAngle) {

//Your Code here

return newAngle;
  
}

@Override
  public float getZoom(float zoom, float defaultZoom) {

//Your Code here

return newZoom;
  
}

A DexMovingImageView has one only ValuesGenerator, so you can specify the enum value or the complete class path inside xml file:

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:src="@drawable/my_image"

dex:evaluator="timeBased"

dex:images_array="@array/my_images"

dex:generator="zoomed"

dex:angle="130"

dex:loop="true"

dex:zoom="1.65"

dex:drawer="scale|translate"

dex:still_image_duration_millis="3000"

dex:transition_duration_millis="1000" />

or

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:src="@drawable/my_image"

dex:evaluator="timeBased"

dex:images_array="@array/my_images"

dex:generator="it.dex.movingimageview.MyValuesGenerator"

dex:angle="130"

dex:loop="true"

dex:zoom="1.65"

dex:drawer="scale|translate"

dex:still_image_duration_millis="3000"

dex:transition_duration_millis="1000" />

###Drawers

Three properties can be modified based on the generated values. So you can use the following:

  • Scale: It scales the view content using "zoom" value in both width and height;
  • Translate: It translate the view inside its container using x and y values returned by ValuesGenerator;
  • Rotate: It rotate the view using "angle" value.

A DexMovingImageView can have one or more Drawers, so you can specify the values inside xml file:

 <it.dex.movingimageviewlib.DexMovingImageView

android:layout_width="match_parent"

android:layout_height="match_parent"

android:src="@drawable/my_image"

dex:evaluator="timeBased"

dex:images_array="@array/my_images"

dex:generator="zoomed"

dex:angle="130"

dex:loop="true"

dex:zoom="1.65"

dex:drawer="scale|rotate|translate"

dex:still_image_duration_millis="3000"

dex:transition_duration_millis="1000" />

Credits

Author: Diego Grancini ( [email protected])

Any hint, suggestion, improvement or comment will be appreciated

License

Copyright 2014-2015 Diego Grancini  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

ZoomLayout is a well documented, high-level View container that supports zooming and panning of View hierarchies and more.

  • ZoomLayout, to zoom and pan view hierarchies
  • ZoomImageView, a pinch-and-scale image container
  • Access to the inner ZoomEngine if interested

Supports animated transitions and an automatic center inside scaleType.

Library that allows you to scale, rotate, crop, alter aspect ratios, change brightness and contrast.

CacheManage for Android.

Beautiful Fancy Button on endorphins.

Icons, Borders, Radius for Android buttons with selectable 16 Icon Fonts precompiled! No need to manually using &#xf087; for icon font character anymore!

An Android Library that help you to customize views (Button, EditText, ImageView), by adding border with the size and color that you want, and give it the corner radius that you seems cool, and you can also make an imageview looks like a circle.

Kotlinify is a suite of extension and classes for easier daily android development in Kotlin.

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