Odometer


Source link: https://github.com/Chils17/OdometerLibrary

Odometer

This is an Android Library for making Odometer with little customization with reading, slots, colors, font and size.
Example is available in app module.

Download

Gradle dependency:

  • Add the following to your project level build.gradle:
repositories {

  maven {

url "https://jitpack.io"
  
}
 
}
 
  • Add this to your app build.gradle:
dependencies {

  compile 'com.github.Chils17:OdometerLibrary:687d5ac1e9' 
}
 

Usage

Xml

  • Create Odometer with their properties.

 <com.androidchils.odometer.Odometer

android:layout_width="match_parent"

android:layout_height="wrap_content">

</com.androidchils.odometer.Odometer>

  • Add EdgeColor of Odometer

  chils:np_edgeColor="@android:color/white" 
  • Add CenterColor of Odometer

  chils:np_centerColor="@android:color/black" 
  • Add Reading
    Reading is the values that you want to show.

  chils:np_reading="0000" 
  • Add Slots
    Slots means that how many slots you want to create.

 chils:np_slots="4" 
  • Add TextColor

 chils:np_textColor="@color/white" 
  • Add TextSize

 chils:np_textSize="18sp" 
  • Add custom font from .ttf. Put your .ttf file at assets\fonts. Font will apply everywhere title, content, buttons

 chils:np_font="@string/lato_regular" 
  • Those attributes necessary to add reading and slots together in Odometer

 chils:np_reading="0000"
  chils:np_slots="4" 

Odometer

  • You can even use the Odometer alone.


<com.androidchils.odometer.Odometer

  android:id="@+id/odometer"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  chils:np_centerColor="@android:color/black"

  chils:np_edgeColor="@android:color/white"

  chils:np_font="@string/lato_regular"

  chils:np_reading="0000"

  chils:np_slots="4"

  chils:np_textColor="@color/white"

  chils:np_textSize="18sp" /> 

Java

  • Create Builder for default Odometer.
    Its necessary to add odometer in the layout.

  Odometer odometer=new Odometer.Builder(this)

 .build();

((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 
  • Add Customize Color
    .background(int odo_edge_color, int odo_center_color)


Odometer odometer=new Odometer.Builder(this)

 .background(ContextCompat.getColor(this, R.color.white), ContextCompat.getColor(this, R.color.black))

 .build();

 ((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 
  • Add custom font from .ttf. Put your .ttf file at assets\fonts.
    Font will apply in odometer number.
    .font(String font)


Odometer odometer=new Odometer.Builder(this)

  .background(ContextCompat.getColor(this, R.color.white), ContextCompat.getColor(this, R.color.black))

  .font(getString(R.string.lato_regular))

  .build();

 ((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 
  • Add reading to set the value of odometer.
    It is essential of both reading and slot have to be equal in length.
    .reading(String reading)

  Odometer odometer=new Odometer.Builder(this)

 .background(ContextCompat.getColor(this, R.color.white), ContextCompat.getColor(this, R.color.black))

 .font(getString(R.string.lato_regular))

 .reading("1234")

 .build();

 ((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 
  • Add slot.
    It is essential of both reading and slot have to be equal in length.
    .slot(int slot)

  Odometer odometer = new Odometer.Builder(this)

 .background(ContextCompat.getColor(this, R.color.white), ContextCompat.getColor(this, R.color.black))

 .font(getString(R.string.lato_regular))

 .reading("1234")

 .slot(4)

 .build();

((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 
  • Add text color.
    .textColor(int odo_text_color)


Odometer odometer = new Odometer.Builder(this)

 .background(ContextCompat.getColor(this, R.color.white), ContextCompat.getColor(this, R.color.black))

 .font(getString(R.string.lato_regular))

 .reading("1234")

 .slot(4)

 .textColor(ContextCompat.getColor(this, R.color.white))

 .build();

 ((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 
  • Add text size.
    .textSize(float textSize)


 Odometer odometer = new Odometer.Builder(this)

  .background(ContextCompat.getColor(this, R.color.white), ContextCompat.getColor(this, R.color.black))

  .font(getString(R.string.lato_regular))

  .reading("1234")

  .slot(4)

  .textColor(ContextCompat.getColor(this, R.color.white))

  .textSize(18)

  .build();

  ((LinearLayout) findViewById(R.id.linear)).addView(odometer);
 

Layout Customization

If you want to get the value of Odometer scrolling value you can create your own.

Note: You can see an example layout in both sample and library modules.

Example XML layout:


  <TextView

 android:id="@+id/tvOutPut"

 android:layout_width="wrap_content"

 android:layout_height="wrap_content"

 android:layout_gravity="center"

 android:layout_marginTop="20dp"

 android:textColor="@color/black"

 android:textSize="18sp" />

  <Button

 android:id="@+id/btn_submit"

 android:layout_width="wrap_content"

 android:layout_height="wrap_content"

 android:layout_gravity="center"

 android:layout_marginTop="20dp"

 android:background="@color/black"

 android:text="Submit"

 android:textColor="@color/white"

 android:textStyle="bold" /> 

Set a listener to be notified when value has changed:



  btn_submit.setOnClickListener(new View.OnClickListener() {

 @Override

 public void onClick(View v) {

  tvOutPut.setText(odometer.getFinalOdometerValue());

 
}

}
);
 

License


 Apache Version 2.0

Copyright 2017.

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

Snake library is a simple and animation line chart for Android.

Content Provider ORM for android. This ORM uses an android sqlite database as a backing store, but interactes with it using content providers. You use it like a normal ORM, by creating java objects, and then do all of you interations through the objects. And you get the added benefits of using it like normal content providers, so integration with list views and other components are simple.

SimpleUI is an Android library which helps you creating the activity UI more easier. You just have to configure the main things instead of coding them yourself.

Login Basics is an implementation of an Android app that support Login with Facebook, Google Plus (G+) and your own login logic. The aim of this project is to serve as basis to build apps that require login as a feature.

A fully open source music player for Android.

Gradle plugin that provides convenience closure for configuring common dependencies.

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