Popularity
4.7
Growing
Activity
0.0
Stable
297
20
131
Code Quality Rank:
L5
Programming language: Java
Tags:
SeekBar Widget
AndroidCircularSeekBar alternatives and similar packages
Based on the "SeekBar Widget" category
-
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. -
HoloCircleSeekBar
A Circle SeekBar inspired by Android Holo ColorPicker designed by Marie Schweiz and developed by Lars Werkman. -
SeekBarCompat
A material based support library to bring consistent SeekBars in Android for API 16 and above. -
StartPointSeekBar
StartPointSeekBar is a custom view for the Android platform that makes it possible to have a SeekBar to have custom start point. -
ColorSeekBar : Color picker library
A color picker seekbar for android. -
CircularSeekBar
Simple custom Android View providing a Circular spin to SeekBars
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of AndroidCircularSeekBar or a related project?
README
CircularSeekBar
A circular seek bar for Android.
Modification
1. Modified setProgress(int progress)
method.
2. Added hideSeekBar()
To hide seekbar.
3. Added ShowSeekBar()
To show seekbar; Bydefault its visible.
Screenshot:
Sample usage:
public class Welcome extends Activity {
CircularSeekBar circularSeekbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
circularSeekbar = new CircularSeekBar(this);
circularSeekbar.setMaxProgress(100);
circularSeekbar.setProgress(100);
setContentView(circularSeekbar);
circularSeekbar.invalidate();
circularSeekbar.setSeekBarChangeListener(new OnSeekChangeListener() {
@Override
public void onProgressChange(CircularSeekBar view, int newProgress) {
Log.d("Welcome", "Progress:" + view.getProgress() + "/" + view.getMaxProgress());
}
});
}
}