HoloCircleSeekBar alternatives and similar packages
Based on the "SeekBar Widget" category.
Alternatively, view HoloCircleSeekBar 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. -
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.
InfluxDB - Purpose built for real-time analytics at any scale.
* 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 HoloCircleSeekBar or a related project?
README
Android HoloCircleSeekBar
A Circle SeekBar inspired by Android Holo ColorPicker designed by Marie Schweiz and developed by Lars Werkman.
How to integrate in your proyect
Import it on your build.gradle
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
compile 'com.github.JesusM:HoloCircleSeekBar:v2.2.2'
}
Documentation To add the widget, you only need to add this to your xml:
<com.jesusm.holocircleseekbar.lib.HoloCircleSeekBar
android:layout_centerInParent="true"
android:id="@+id/picker"
android:layout_width="285dp"
android:layout_height="290dp"
app:max="100"
app:pointer_color="@color/point_color"
app:pointer_halo_color="@color/point_halo_color"
app:pointer_size="20dp"
app:text_color="@color/text_color"
app:text_size="65sp"
app:wheel_active_color="@color/wheel_active_color"
app:wheel_unactive_color="@color/wheel_unactive_color"/>
Don't forget to add this at the root of your View in the xml layout to use the custom attributes:
xmlns:app="http://schemas.android.com/apk/res-auto"
You can change some widget components (text size, wheel color, point color, etc) sith this attrs.
app:max="100"
app:pointer_color="#0174DF"
app:pointer_halo_color="#88252525"
app:pointer_size="34"
app:text_color="#FF0000"
app:text_size="65"
app:wheel_active_color="#00BFFF"
app:wheel_unactive_color="#FFCCCCCC"
To get the value of the circle seekbar
HoloSeekBar picker = (HoloSeekBar) findViewById(R.id.picker);
picker.getValue();
License
Copyright 2012 Jesús Manzano
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.
Original by Lars Werkman
Modified By Jesús Manzano
*Note that all licence references and agreements mentioned in the HoloCircleSeekBar README section above
are relevant to that project's source code only.