PulseView


Source link: https://github.com/Devlight/PulseView



PulseView

Widget that generates pulsation relative to your icons.

                       


You can check the sample app here.

Download

You can download an .aar from GitHub's releases page.

Or alternatively use Gradle jCenter:

dependencies {

  repositories {

mavenCentral()

maven {

 url  'http://dl.bintray.com/gigamole/maven/'

}

  
}

  compile 'com.github.devlight.pulseview:library:+' 
}

Gradle Maven Central:

compile 'com.github.devlight.pulseview:library:1.0.2'

Maven:

<dependency>
  <groupId>com.github.devlight.pulseview</groupId>
  <artifactId>library</artifactId>
  <version>1.0.2</version>
  <type>aar</type> </dependency>

Android SDK Version

PulseView requires a minimum SDK version of 11.

Sample

Parameters

For PulseView you can set such parameters as:

  • icon:
    at first you need to set icon for PulseView.

  • icon width and height:
    allows you to set size of the icon.

  • pulse side measure:
    allows you to set pulse side measure. Width or height of PulseView.

  • pulse count:
    allows you to set pulse count.

  • pulse spawn period:
    allows you to set pulse spawn period.

  • pulse alpha:
    allows you to set alpha to pulse.

  • pulse color:
    allows you to set pulse color.

  • interpolator:
    allows you to set an interpolator for the pulse.

  • listener:
    allows you to set pulse listener. onStartPulse() and onFinishPulse() listeners.

Tips

The icon to pulse can be a normal bitmap or a SVG file.
In preview mode PulseView renders incorrectly because the Canvas can`t scale in this mode.

Init

Check out in code init:

final PulseView pulseView = (PulseView) findViewById(R.id.pv);
 pulseView.setPulseColor(Color.BLACK);
 pulseView.setPulseCount(5);
 pulseView.setPulseMeasure(PulseView.PulseMeasure.WIDTH);
 pulseView.setIconHeight(200);
 pulseView.setIconWidth(200);
 pulseView.setIconRes(R.drawable.icon);
 pulseView.setPulseAlpha(70);
 pulseView.setInterpolator(new LinearInterpolator());
 pulseView.setPulseListener(new PulseView.PulseListener(...));

To start or finish pulse you need to call methods:

pulseView.startPulse();
 pulseView.finishPulse();

Other methods can be seen within the sample application.

And XML init:

<com.gigamole.library.PulseView
  android:id="@+id/pv"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  app:pv_icon="@drawable/icon"
  app:pv_alpha="70"
  app:pv_color="#eae761"
  app:pv_count="8"
  app:pv_measure="height"
  app:pv_icon_width="168dp"
  app:pv_icon_height="194dp"
  app:pv_spawn_period="700"
  app:pv_interpolator="@android:anim/linear_interpolator"/>

Getting Help

To report a specific problem or feature request, open a new issue on Github.

Credits

Greg Wilkinson Thomas Budiman

Author

Created by Basil Miller - @gigamole

Company

           

Here you can see open source work developed by Devlight LLC.
This and another works is an exclusive property of Devlight LLC.

If you want to use this library in applications which will be available on Google Play, please report us or author of the library about it.

Whether you're searching for a new partner or trusted team for creating your new great product we are always ready to start work with you.

You can contact us: [email protected] or [email protected].
Thanks in advance.

Devlight LLC, 2016
devlight.io

Resources

Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json with Bodymovin and renders them natively on mobile!

For the first time, designers can create and ship beautiful animations without an engineer painstakingly recreating it by hand.

This is a simple FidgetSpinner view.

CircularProgressbar project lets you to create a circular progressbar in the simplest way.

This library uses the power of RxJava to wrap an Observable android Activity#onActivityResult() method so you can easily request something from other activities and have the result right there in your observabale's subscribe() method.

Main Benefits

  • Don't Break The Chain: Prevents you to split your code between the permission request and the result handling. Currently without this library you have to request in one place and handle the result in Activity#onActivityResult().
  • Reactive: All what RX provides about transformation, filter, chaining...

Circle Time View is an android custom view for displaying time in a pretty format. The View is highly customizable, so you can adapt the appearance according your needs.

You can use this view to create countdown timers, alarms or just allow user to set time manually.

This library requires API level 8 or higher.

A fancy CircularProgressView.

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