ProtractorView

Android Arsenal Release API

ProtractorView library for android :pouting_cat:

A semicircular seekbar view for selecting an angle from 0° to 180.

alt tag alt tag

Gradle Dependency

Add this in your root build.gradle file at the end of repositories:

allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

Add the dependency :

dependencies {
       compile 'com.github.GoodieBag:ProtractorView:v1.2'
    }

Sync the gradle and that's it! :+1:

Features :

//use setters to style it. Every xml attribute mentioned above has a setter to support programmatical creation of the views protractorView.setTickIntervals(15); protractorView.setArcColor(getColor(R.color.colorAccent)); protractorView.setProgressColor(getColor(R.color.myColor)); . . . //so on

 There is an event listener which can be set up as follows : 
 ```java
 protractorView.setOnProtractorViewChangeListener(new ProtractorView.OnProtractorViewChangeListener() {
            @Override
            public void onProgressChanged(ProtractorView pv, int progress, boolean b) {
                //protractorView's getters can be accessed using pv instance.
            }

            @Override
            public void onStartTrackingTouch(ProtractorView pv) {

            }

            @Override
            public void onStopTrackingTouch(ProtractorView pv) {

            }
        });

Thanks to :

Shoutout to SeekArc.
Thanks to SeekArc by neild001 we were able to understand the drawing mechanism of the circular seekbar, which then helped us draw the semi-circular one.

LICENSE

MIT License

Copyright (c) 2017 GoodieBag

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.