A semicircular seekbar view for selecting an angle from 0° to 180.
效果展示
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'
<com.goodiebag.protractorview.ProtractorView
ohos:width="match_content"
ohos:height="match_content"
app:textProgressColor="#FF00"
app:ticksBetweenLabel = "two"
app:tickColor="#4a4a4a"
app:tickProgressColor="#ff0000"/>
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 :
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) {
}
});
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.
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.
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Комментарии ( 0 )