Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 992 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 992 Bytes

OdometerView

Old school Odometer view, can also be called as Analog Flip View or Flip Calendar View. Easy to implement and cumtomize.

Installation

Import the Library as a module in your Application, as show in the sample.

You can use the widget in your layout file:

 <com.imaginedev.odometerview.OdometerView
        android:id="@+id/odometer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:reading="12345"
        />

Update the reading dynamically:
double value = 1234;
boolean withAnimate = true;
odometer.setValue(value, withAnimate);



Screenshot



License

This project is licensed under the MIT License - see the LICENSE file for details