MaterialRangeBar


Source link: https://github.com/oli107/material-range-bar

MaterialRangeBar

MaterialRangeBar is a fork from https://github.com/edmodo/range-bar that adds some basic material styling, as well as start and end values, values as floats and some other things. It is aiming to mimic this:

http://www.google.com/design/spec/components/sliders.html

It is similar to an enhanced SeekBar widget, though it doesn't make use of the SeekBar. It provides for the selection of a range of values as well as for a single value. The selectable range values are discrete values designated by tick marks; the pin (handle) will snap to the nearest tick mark. This is my first library project, apologies for poor coding, etc etc.

Supported on API Level 12 and above for animations.

Developers can customize the following attributes (both via XML and programatically):

Change Log

1.4 - Added mrb_ prefix to all attributes. Also added mrb_selectorBoundaryColor and mrb_selectorBoundarySize attribute.
1.3 - Stopped pins appearing on initialisation when temporary. Margin correct even if pin radius = 0. PR to correct motion down 1.2 - NPE fixed for movePin 1.1 - Merged pull requests 1.0 - Merged pull requests to fix range bar issues and issues in scrollview, promoted to 1.0 release due to few other PRs. 0.1 - released onto Maven Central. Fixed color pickers in sample. Added ability to set pin color via XML and pin text color via XML or programatically 0.0.1 - 0.0.7 - Initial releases. 

Tick Properties

mrb_tickStart | float mrb_tickEnd | float mrb_tickInterval | float mrb_tickHeight | dimension mrb_tickColor | color 

Bar Properties

mrb_rangeBar | boolean mrb_barWeight | dimension mrb_rangeBarColor | reference or color mrb_rangeBarPaddingBottom | dimension mrb_connectingLineWeight | dimension mrb_connectingLineColor | reference or color 

Pin Properties

mrb_pinPadding | dimension mrb_pinRadius | dimension mrb_pinMinFont | dimension mrb_pinMaxFont | dimension mrb_pinColor | reference or color mrb_pinTextColor | reference or color mrb_temporaryPins | boolean 

Selector Properties

mrb_selectorColor | reference or color mrb_selectorSize | dimension mrb_selectorBoundaryColor | reference or color mrb_selectorBoundarySize | dimension 

Via runtime only (no XML option)

pin indices (the location of the thumbs on the RangeBar) 

Examples

Layout XML

This is a rangebar with both a lower and upper value

<com.appyvet.materialrangebar.RangeBar

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="72dp"

android:layout_marginLeft="16dp"

android:layout_marginRight="16dp"

app:mrb_pinMaxFont="10sp"

app:mrb_rangeBarPaddingBottom="12dp"

app:mrb_selectorBoundaryColor="@color/accent"

app:mrb_selectorBoundarySize="2dp"

app:mrb_pinTextColor="#ACD123"

app:mrb_selectorSize="10dp"

app:mrb_tickEnd="10"

app:mrb_tickInterval="1"

app:mrb_tickStart="5"/>

This is a seekbar with only a single pin (note rangeBar=false)

<com.appyvet.materialrangebar.RangeBar

xmlns:app="http://schemas.android.com/apk/res-auto"

android:id="@+id/rangebar"

android:layout_width="match_parent"

android:layout_height="72dp"

app:mrb_rangeBar="false"/>

Adding a rangebar listener

  • Add a listener - rangeBar.setOnRangeBarChangeListener which returns left and right index as well as value.
rangebar.setOnRangeBarChangeListener(new RangeBar.OnRangeBarChangeListener() {

 @Override

 public void onRangeChangeListener(RangeBar rangeBar, int leftPinIndex,

  int rightPinIndex, String leftPinValue, String rightPinValue) {

 
}

 
}
);

Adding a text formatter

Formats the text inside the pin.

  • Add a formater - IRangeBarFormatter which will return the value of the current text inside of the pin
  • Transform string s into any string you want and return the newly formated string.
rangebar.setFormatter(new IRangeBarFormatter() {

 @Override

 public String format(String s) {

 // Transform the String s here then return s

  return null;

 
}

}
);

Plan for Future

  • Better documentation.
  • Properly implement Map of strings to each value

Demo

Get it from the Google Play Store

How to Use

In your project build.gradle. Add the following lines

repositories {

  jcenter()
  maven {

url  "https://dl.bintray.com/krazykira/maven"

}
 
}
  • Note: Don't put the above lines inside the buildscript block.

In your app build.gradle. Add the following lines

dependencies {

  compile 'com.appyvet:materialrangebar:1.4' 
}

if you are already using android support library inside your project and run into multiple version issues related to android support library then modify the gradle path like this

dependencies {

  compile ('com.appyvet:materialrangebar:1.4') {

 exclude module: 'support-compat'
  
}
 
}

Contribution

You are always welcome to contribute and help us mantain the library.

License

Copyright 2015  AppyVet, 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

Wizard encapsulates navigation operations between fragments of an activity using BackStack.

ExceptionWear is very simple library to solve problem of not passing exceptions from Android Wear devices to the phone. So if you release an app for smart-watches to Google Play and it will crash (and it will) you won't get any information about it.

ASignature is a library for drawing smooth signatures. It uses variable width Bézier curve interpolation based on Smoother Signatures. It works from API 8+ and doesn't depend on any external libraries.

QuickScroll is a library aimed at creating similar scrolling experiences to the native Contacts app's People view. It has the same scrolling capabilities as the ListView's native fast-scroll, but comes with a much a much more customizable design, two indicator styles and an always visible scrollbar. The two most common modes are popup and indicator. Works seamlessly with ListView and ExpandableListView.

ParallaxViewPager is an easy-to-use ViewPager subclass with parallax background.

Android - MaterialPreference

  • A simple backward-compatible implementation of a Material Design Preference aka settings item
  • XML layouts are taken from Android Platform Framework Base

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