SeekBarRangedView


Source link: https://github.com/GuilhE/android-seekbar-ranged-view

SeekBarRangedView:

A SeekBar restrained by a minimum and maximum value.

Back in 2014 I contributed to this project by adding a few functionalities to RangeSeekBar.java. The repo had no activity since then, so I've decided to extend it and continue. Credits must be shared with Nick Knudson ;)

Version 1.x

  • August, 2017 - SeekBarRangedView

Getting started

Include it into your project, for example, as a Gradle compile dependency:

compile 'com.github.guilhe:seekbar-ranged-view:${
LATEST_VERSION
}
'

Sample usage

Check out the sample module where you can find a few examples of how to create it by xml or java.

Attributes accepted in xml:

<declare-styleable name="SeekBarRangedView">

<attr name="min" format="float"/>

<attr name="max" format="float"/>

<attr name="currentMin" format="float"/>

<attr name="currentMax" format="float"/>

<attr name="rounded" format="boolean"/>

<attr name="backgroundColor" format="color"/>

<attr name="backgroundHeight" format="dimension"/>

<attr name="progressColor" format="color"/>

<attr name="progressHeight" format="dimension"/>

<attr name="thumbsResource" format="reference"/>

<attr name="thumbNormalResource" format="reference"/>

<attr name="thumbPressedResource" format="reference"/>  </declare-styleable>

Example:

<com.github.guilhe.rangeseekbar.SeekBarRangedView

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  custom:currentMin="10"

  custom:backgroundColor="#C0C0C0"

  custom:progressColor="@color/progress_bar_line"

  custom:backgroundHeight="10dp"

  custom:progressHeight="20dp"

  custom:rounded="true"/>

For android:layout_height you should use "wrap_content":

otherwise you'll be adding "margins" to your view (ex, android:layout_height="200dp"):

If you want to change its height, use the backgroundHeight and/or progressHeight attributes instead:

To customize this View by code, these are the available methods to do so:

 public interface OnSeekBarRangedChangeListener {

void onChanged(SeekBarRangedView view, double minValue, double maxValue);

 void onChanging(SeekBarRangedView view, double minValue, double maxValue);

  
}

 public void setSeekBarRangedChangeListener(OnSeekBarRangedChangeListener listener) {

}

public float getMinValue() {

}

public float getMaxValue() {

}

public void setSelectedMinValue(float value) {

}

public void setSelectedMinValue(float value, boolean animate) {

}

public void setSelectedMinValue(float value, boolean animate, long duration) {

}

public double getSelectedMinValue() {

}

public void setSelectedMaxValue(float value) {

}

public void setSelectedMaxValue(float value, boolean animate) {

}

public void setSelectedMaxValue(float value, boolean animate, long duration) {

}

public double getSelectedMaxValue() {

}

public void setRounded(boolean rounded) {

}

public void setBackgroundHeight(float height) {

}

public void setProgressHeight(float height) {

}

  public void setBackgroundColor(int red, int green, int blue) {

}

public void setBackgroundColor(int alpha, int red, int green, int blue) {

}

public void setBackgroundColor(Color color) {

}

public void setBackgroundColor(int color) {

}

public void setBackgroundColorResource(@ColorRes int resId) {

}

public void setProgressColor(int red, int green, int blue) {

}

public void setProgressColor(int alpha, int red, int green, int blue) {

}

public void setProgressColor(Color color) {

}

public void setProgressColor(int color) {

}

public void setProgressColorResource(@ColorRes int resId) {

}

public void setThumbsImage(Bitmap bitmap) {

}

public void setThumbsImageResource(@DrawableRes int resId) {

}

public void setThumbNormalImage(Bitmap bitmap) {

}

public void setThumbNormalImageResource(@DrawableRes int resId) {

}

public void setThumbPressedImage(Bitmap bitmap) {

}

public void setThumbPressedImageResource(@DrawableRes int resId) {

}

For more details checkout javadocs or the code itself.

Binaries

Binaries and dependency information for Gradle, Maven, Ivy and others can be found at https://search.maven.org.

Dependencies

Bugs and Feedback

For bugs, questions and discussions please use the Github Issues.

LICENSE

Copyright (c) 2017-present, SeekBarRangedView Contributors.

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

The EasyBluetooth library allows the fast creation of Bluetooth connections between devices.

Chain of Command with background foreground options. Chains can be pre-constructed, and reused any number of times. Individual commands can be written as lambdas, or as classes.

Binds views and resources easily. Really easily. Everywhere.

The Shared Memory library allows for the creation of memory regions that may be simultaneously accessed by multiple Android processes or applications. Developed to overcome the Android 1MB IPC limitation, this Shared Memory library allows you to exchange larger amounts of data between your Android applications.

The missing library manager for Android Developers.

This project allows you to create a custom Toast in android in simplest way.

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