StartPointSeekBar alternatives and similar packages
Based on the "SeekBar Widget" category.
Alternatively, view StartPointSeekBar alternatives based on common mentions on social networks and blogs.
-
discreteSeekBar
DiscreteSeekbar is my poor attempt to develop an android implementation of the Discrete Slider component from the Google Material Design Guidelines. -
HorizontalWheelView
Custom view for user input that models horizontal wheel controller. -
circularseekbar
Custom circular SeekBar (Circle, Semi-circle, and Ellipse) View/Widget for Android -
AndroidCircularSeekBar
A circular seek bar for Android -
RangeSeekbar
A seekbar contains two cursor(left and right). Multiple touch supported. -
HoloCircleSeekBar
Android circle seekbar widget inspired from: https://github.com/LarsWerkman/HoloColorPicker -
SeekBarCompat
A simple material-based support library to bring consistent SeekBars on Android 14 and above -
ColorSeekBar : Color picker library
A color picker seekbar for android. -
CircularSeekBar
Simple custom Android View providing a Circular spin to SeekBars
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of StartPointSeekBar or a related project?
README
Forked/Inspired from https://code.google.com/p/range-seek-bar/ by [email protected]
This solves the problem as described in http://stackoverflow.com/questions/17415096/seekbar-for-two-values-50-0-50
So you can set the start position of the seekbar anywhere.
Example code:
<com.vashisthg.startpointseekbar.StartPointSeekBar
android:id="@+id/seek_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
custom:minValue="-40.0"
custom:maxValue="+40.0"
custom:defaultBackgroundColor="@color/default_background_color"
custom:defaultBackgroundRangeColor="@color/default_background_range_color"
/>
StartPointSeekBar seekBar = (StartPointSeekBar) findViewById(R.id.seek_bar);
seekBar.setOnSeekBarChangeListener(new StartPointSeekBar.OnSeekBarChangeListener() {
@Override
public void onOnSeekBarValueChange(StartPointSeekBar bar, double value) {
Log.d(LOGTAG, "seekbar value:" + value);
}
});