# ProtractorView **Repository Path**: HarmonyOS-tpc/ProtractorView ## Basic Information - **Project Name**: ProtractorView - **Description**: A semicircular seekbar view for selecting an angle from 0° to 180. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-04-01 - **Last Updated**: 2023-04-17 ## Categories & Tags **Categories**: harmonyos-advanced **Tags**: None ## README # ProtractorView A semicircular seekbar view for selecting an angle from 0° to 180. 效果展示 ## Gradle Dependency Add the dependency : 添加依赖: 方式一: 添加har包到lib文件夹内 在entry的gradle内添加如下代码 implementation fileTree(dir: 'libs', include: ['.jar', '.har']) 方式二: allprojects { repositories{ mavenCentral() } } implementation 'io.openharmony.tpc.thirdlib:ProtractorView:1.0.0' ## Features : * A semi-circular seekbar widget for selecting an angle from 0° to 180°. * Complete customisation facilities for changing the colors of the text, tick, progress bar and thumb. * A special highlighting mechanism has been implemented. As the thumb passes through the angles (ticks / text), it can change the tick/text colors marking them as "traversed" to give the user a visual hint. * The tick length and the interval between ticks and text can also be customised. ## Usage : ### XML : ```xml ``` ``` you can reference it from your XML : ```java ProtractorView protractorView = (ProtractorView) findComponentById(ResourceTable.Id_protractorview); //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](https://github.com/neild001/SeekArc).
Thanks to SeekArc by [neild001](https://github.com/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. ```