Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JesusM/HoloCircleSeekBar
Android circle seekbar widget inspired from: https://github.com/LarsWerkman/HoloColorPicker
https://github.com/JesusM/HoloCircleSeekBar
Last synced: about 6 hours ago
JSON representation
Android circle seekbar widget inspired from: https://github.com/LarsWerkman/HoloColorPicker
- Host: GitHub
- URL: https://github.com/JesusM/HoloCircleSeekBar
- Owner: JesusM
- License: apache-2.0
- Created: 2013-01-23T00:27:28.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2019-11-18T14:35:21.000Z (about 5 years ago)
- Last Synced: 2023-11-07T15:16:11.442Z (about 1 year ago)
- Language: Java
- Size: 705 KB
- Stars: 231
- Watchers: 14
- Forks: 74
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/JesusM/HoloCircleSeekBar
README
Android HoloCircleSeekBar
A Circle SeekBar inspired by Android Holo ColorPicker designed by Marie Schweiz and developed by Lars Werkman.
![image](/images/device-2015-04-08-225534.png)
![image](/images/device-2015-09-21-225940.png)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:
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**