A color picker seekbar for android
ColorSeekBar
A color picker seekbar for android.
Download
- Use Gradle
compile 'com.divyanshu.colorseekbar:colorseekbar:1.0'
- or Maven
<dependency>
<groupId>com.divyanshu.colorseekbar</groupId>
<artifactId>colorseekbar</artifactId>
<version>1.0</version>
<type>pom</type>
</dependency>
Usage
- XML
<com.divyanshu.colorseekbar.ColorSeekBar
android:id="@+id/color_seek_bar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="16dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
- Attributes
Attribute Name | Description |
---|---|
app:colorSeeds="@array/colors" | Set the colors of seekbar |
app:cornerRadius="4dp" | Sets the corner radius of bar. |
app:barHeight="8dp | Sets the height of color bar. |
app:thumbBorder="4dp" | Sets the width of thumb border. |
app:thumbBorderColor="@android:color/black" | sets the color of thumb border. |