ACProgressLite alternatives and similar packages
Based on the "Progressbar/Progress View Widget" category.
Alternatively, view ACProgressLite alternatives based on common mentions on social networks and blogs.
-
SmoothProgressBar
A small Android library allowing you to have a smooth and customizable horizontal or circular indeterminate ProgressBar -
LoadingDrawable
Some beautiful android loading drawable, can be combined with any view as the LoadingView or the ProgressBar. Besides, some Drawable can customize the loading progress too. -
AndroidFillableLoaders
Completely customizable progress based loaders drawn using custom CGPaths written in Swift -
KProgressHUD
An implement of ProgressHUD for Android, similar to MBProgressHUD, SVProgressHUD for iOS. -
CircleProgressBar
A circular android ProgressBar library which extends View, and the usage same as ProgressBar, It has solid,line and solid_line three styles. Besides, progress value can be freely customized. -
MaterialLoadingProgressBar
MaterialLoadingProgressBar provide a styled ProgressBar which looks like SwipeRefreshLayout's loading indicator(support-v4 v21+) -
DownloadProgressBar
DownloadProgressBar is an android library that delivers awesome custom progress bar. You can manipulate it's state in every way. -
RefreshActionItem
Android - An action bar item which acts both as a refresh button and as a progress indicator -
ColoringLoading
This project provide Coloring Loading View for Android. And this project is not using the image file! -
SlidingSquaresLoader
A simple progress loader inspired by Can you Code this UI? Volume 6! - https://stories.uplabs.com/can-you-code-this-ui-volume-6-7bd09fa6dd92#.nyh2zhpvb -
DelayedProgress
ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the ProgressDialog will be visible for a minimum amount of time to avoid "flashes" in the UI. -
StackedHorizontalProgressBar
:barber: [Android Library] Stacked dual progress indicator progress-bar -
ProgressDialog Library
A ProgressDialog Library for Android API 24+ apps provided by Techiness Overloaded (Developer name : Arunprasadh C). Quite Useful for showing progress during any operation. Has support for both Determinate and Indeterminate ProgressBar, Dark Theme, and NegativeButton.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ACProgressLite or a related project?
README
ACProgressLite
English Version / 中文版本
An Android loading widget library. Lite and easy to use, strong customizability. Can be used to implement 'iOS' like loading dialog efficiently.
Similar to iOS MBProgressHUD
Keywords Progressbar, Progresswheel, HUD, Android, Loading
Minimum SDK Version: API 9 ( Android 2.3 )
Current Version
- 1.2.1
Usage
- gradle:
compile 'cc.cloudist.acplibrary:library:1.2.1'
Sample Code
- Flower
ACProgressFlower dialog = new ACProgressFlower.Builder(this)
.direction(ACProgressConstant.DIRECT_CLOCKWISE)
.themeColor(Color.WHITE)
.text("Title is here")
.fadeColor(Color.DKGRAY).build();
dialog.show();
- Pie
ACProgressPie dialog = new ACProgressPie.Builder(this)
.ringColor(Color.WHITE)
.pieColor(Color.WHITE)
.updateType(ACProgressConstant.PIE_AUTO_UPDATE)
.build();
dialog.show();
- Custom
ACProgressCustom dialog = new ACProgressCustom.Builder(this)
.useImages(R.drawable.p0, R.drawable.p1, R.drawable.p2, R.drawable.p3)
.build();
dialog.show();
Configuration
3 types of dialog are avaliable now:
Here are some general configurations:
sizeRatio
size of the background. The value is float and less than 1f. It means the ratio of "real size / the smaller edge length of the screen". aka:
background length = the smaller edge length of the screen * sizeRatioPay attention to the situation of "Flower type with text", it will be explained int next scetion.
bgColor
Color of background, int value.bgAlpha
Transparency of background. 0 is full transparency, 1 is opaque. All alpha configurations are similar.bgCornerRadius
Radius of four corners of the background.
bgColor, bgAlpha, bgCornerRadius are not available for custom type
- Flower
Most commonly used type. Support adding text title.
Configuration | Description |
---|---|
themeColor | Start color of petals. |
borderPadding | Distance between outer edge of petals and edge of background / length of the edge of background. (length of the edge of background is based on sizeRatio) |
centerPadding | Distance between inner edge of petals and center of background / length of the edge of background. (length of the edge of background is based on sizeRatio) |
fadeColor | End color of petals. |
petalCount | Number of petals. |
petalAlpha | Transparency of petals. |
petalThickness | Thickness of petals. |
direction | Direction of petals' rotation, ACProgressConstant.DIRECT_CLOCKWISE or DIRECT_ANTI_CLOCKWISE . |
speed | Speed of petals' rotation, frames count in each second. |
text | Text, shown under petals. |
textSize | Text's size. |
textColor | Text's color. |
textAlpha | Text's transparency. |
textMarginTop | Distance between text and petals. |
isTextExpandWidth | Whether expand the background width to equal the height when a text title is set. If you set a text title, the background's height will become longer because of making room for text. If this value is true , the petals are still drawn by sizeRatio, but petals will be horizontally centered as the background's width is expanded to equal the height; if this value is false , the background will be rectangle with different width and height. |
- Pie
Suitable for display progress. Manual-update and auto-update are supported.
Configuration | Description |
---|---|
ringColor | Color of ring. |
ringAlpha | Transparency of ring. |
ringThickness | Thickness of ring. |
ringBorderPadding | Distance between ring and edge of background / length of the edge of background. |
pieColor | Color of pie. |
pieAlpha | Transparency of pie. |
pieRingDistance | Distance between ring and pie / length of the edge of background. |
updateType | Update type. PIE_AUTO_UPDATE or PIE_MANUAL_UPDATE . Manually update with method setPiePercentage() . |
speed | frames count in each second with auto-update type. |
pieces | pieces of pie with auto-update type. |
- Custom
like GIF, support res/drawable resources ids array or image files array as data source.
Configuration | Description |
---|---|
useImages | resources ids array. |
useFiles | image files array. |
speed | frames count in each second. |
Notice
- Try to clean the project first when you come across any problem.
- use
setCanceledOnTouchOutside(true)
in version 1.2.0+ when you want to dismiss the dialog when touch outside. - Most of the methods in
Dialog
are supported. - We strongly suggest you to use version above 1.2.0
- If you use version before 1.1.0 (without 1.1.0),and gradle error occured, you can add
tools:ignore="label
under tagapplication
in Manifest to solve it. - Don not try to use
useImages
anduseFiles
at the same time, or only the last calling is avaliable. - Default configuration can perform well under most situations. If you really want to do customization, please tweak carefully to get best visual performance.
- I'm not a native English speaker, there may be some grammar mistakes in this file. Suggestions and corrections are welcome.
License
*Note that all licence references and agreements mentioned in the ACProgressLite README section above
are relevant to that project's source code only.