Popularity
4.7
Declining
Activity
0.0
Stable
291
19
130
Code Quality Rank:
L5
Programming language: Java
License: GNU General Public License v3.0 or later
Tags:
SeekBar Widget
AndroidCircularSeekBar alternatives and similar packages
Based on the "SeekBar Widget" category.
Alternatively, view AndroidCircularSeekBar 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. -
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
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* 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());
}
});
}
}