Popularity
4.8
Stable
Activity
0.0
Stable
289
19
129
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. -
circularseekbar
Custom circular SeekBar (Circle, Semi-circle, and Ellipse) View/Widget 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 -
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
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* 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 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());
}
});
}
}