Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.GIGAMOLE:ArcProgressStackView:1.0.3'
}
dependencies {
implementation("com.github.GIGAMOLE:ArcProgressStackView:1.0.3")
}
<dependency>
<groupId>com.github.GIGAMOLE</groupId>
<artifactId>ArcProgressStackView</artifactId>
<version>1.0.3</version>
</dependency>
libraryDependencies += "com.github.GIGAMOLE" % "ArcProgressStackView" % "1.0.3"
:dependencies [[com.github.GIGAMOLE/ArcProgressStackView "1.0.3"]]
Present your progress bars in arc mode with information and total control.
<p align="center"> <img src="https://drive.google.com/uc?export=download&id=0BxPO_UeS7wScTjlVNklhUHZibVE"/> </p>You can check the sample app here.
This library is not more supported.
If you want to add new feature or fix a bug, grab source code and do it.
If you think your fix or feature would be useful to other developers,
I can add link of your repository to this README file.
Thank you for using our libraries.
You can download a .aar
from GitHub's releases page.
Or use Gradle:
implementation 'devlight.io:arcprogressstackview:1.0.4'
Or Maven:
<dependency>
<groupId>devlight.io</groupId>
<artifactId>arcprogressstackview</artifactId>
<version>1.0.4</version>
<type>pom</type>
</dependency>
Or Ivy:
<dependency org='devlight.io' name='arcprogressstackview' rev='1.0.4'>
<artifact name='$AID' ext='pom'></artifact>
</dependency>
ArcProgressStackView
requires a minimum SDK version of 8, but if you want animation and shadow support it requires a minimum SDK version of 11.
<b>Parameters</b>
For APSV
you can set such parameters as:
models:
allows you to set APSV
models, where you set title, progress and colors. Can be set up only via code.
animation:
allows you to animate progress with func call or with touch event.
shadow:
allows you to add shadow to your progress models, but remember, the shadow need LAYER_TYPE_SOFTWARE
, so it decrease FPS.
round corners:
allows you to set round corners to models.
drag/seek:
allows you to make your progress model seek like.
typeface:
allows you to set custom typeface.
text color:
allows you to set text(title and progress indicator) color.
shadow distance:
allows you to set shadow distance.
shadow angle:
allows you to set shadow angle.
shadow radius:
allows you to set shadow radius.
shadow color:
allows you to set shadow color.
animation duration:
allows you to set animation duration.
animation listener:
allows you to set animation listener.
interpolator:
allows you to set interpolator to animation.
draw width:
allows you to set draw width in fraction mode(e.g. 55%) or dimension mode.
model offset:
allows you to set model offset(positive or negative).
model background:
allows you to set model background track from start angle to sweep angle.
start angle:
allows you to set start angle of models.
sweep angle:
allows you to set sweep angle of models.
progress indicator orientation:
allows you to set progress indicator orientation.
preview colors:
allows you to set preview colors, which generate count of models equals to count of colors.
preview background:
allows you to set models background preview color.
<b>Tips</b>
All angle variables can only be positive and be in range from 0 to 360 degrees.
The size of View
automatically set up in square mode.
<b>Init</b>
Check out in code init:
final ArrayList<ArcProgressStackView.Model> models = new ArrayList<>();
models.add(new ArcProgressStackView.Model("Circle", 25, bgColors[0], mStartColors[0]));
models.add(new ArcProgressStackView.Model("Progress", 50, bgColors[1], mStartColors[1]));
models.add(new ArcProgressStackView.Model("Stack", 75, bgColors[2], mStartColors[2]));
models.add(new ArcProgressStackView.Model("View", 100, bgColors[3], mStartColors[3]));
final ArcProgressStackView arcProgressStackView = (ArcProgressStackView) findViewById(R.id.apsv);
arcProgressStackView.setModels(models);
Other methods check out in sample.
And XML
init:
<devlight.io.library.ArcProgressStackView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:apsv_rounded="true"
app:apsv_shadowed="true"
app:apsv_animated="true"
app:apsv_dragged="true"
app:apsv_leveled="true"
app:apsv_typeface="fonts/agency.ttf"
app:apsv_text_color="#fff"
app:apsv_shadow_distance="5dp"
app:apsv_shadow_angle="90"
app:apsv_shadow_radius="10dp"
app:apsv_shadow_color="#000"
app:apsv_animation_duration="1000"
app:apsv_interpolator="@android:anim/bounce_interpolator"
app:apsv_draw_width="75%"
app:apsv_model_offset="5dp"
app:apsv_model_bg_enabled="true"
app:apsv_start_angle="270"
app:apsv_sweep_angle="360"
app:apsv_indicator_orientation="vertical"
app:apsv_preview_colors="@array/default_preview"
app:apsv_preview_bg="#ccc"/>
To report a specific problem or feature request, open a new issue on Github.
|Ron Evgeniy|Virgil Pana|Gleb Kuznetsov|
|:-----------------------------------------------:|:--------------------------------------------:|:--------------------------------------------:|
||
|
|
Created by Basil Miller - @gigamole