SeekBarCompat alternatives and similar packages
Based on the "SeekBar Widget" category.
Alternatively, view SeekBarCompat 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. -
HoloCircleSeekBar
Android circle seekbar widget inspired from: https://github.com/LarsWerkman/HoloColorPicker -
StartPointSeekBar
StartPointSeekBar is a custom view for the Android platform that makes it possible to have a SeekBar to have custom start point.
SaaSHub - Software Alternatives and Reviews
* 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 SeekBarCompat or a related project?
README
SeekBarCompat
A support library for the material design SeekBar in Android for API 14 and above.
Screenshot
On APIs 14 and above - Seekbars would look something like
Example
The SeekBarCompat picks up the PrimaryColor by default, but you can set custom colors for SeekBar thumb and progress too, both in xml and programmatically.
Xml
<app.minimize.com.seek_bar_compat.SeekBarCompat
android:id="@+id/materialSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="300sp"
app:progressColor="#AFF123"
app:progressBackgroundColor="#000"
app:thumbColor="#FF4444"
app:thumbAlpha="1.0"/>
Note: Add maxHeight attribute in xml - it fixes the thumb gravity issues on APIs < 21
In Xml you can also specify progressBackgroundColor - by default the progressBackgroundColor (progress-line color) is Black.
Programmatically
val seekBarCompat = findViewById<View>(R.id.materialSeekBar) as SeekBarCompat
seekBarCompat.setThumbColor(Color.RED)
seekBarCompat.setProgressColor(Color.CYAN)
seekBarCompat.setProgressBackgroundColor(Color.BLUE)
seekBarCompat.setThumbAlpha(128)
Download
Repository available on jCenter
compile 'com.minimize.library:seekbar-compat:0.3.0'
If the dependency fails to resolve, add this to your project repositories
repositories {
maven {
url "http://dl.bintray.com/ahmedrizwan/maven"
}
}
License
Copyright 2015 Ahmed Rizwan
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.
*Note that all licence references and agreements mentioned in the SeekBarCompat README section above
are relevant to that project's source code only.