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.
-
AVLoadingIndicatorView
AVLoadingIndicatorView is a collection of nice loading animations for Android. -
NumberProgressBar
A beautiful, slim Android ProgressBar. -
SmoothProgressBar
A small Android library allowing you to have a smooth and customizable horizontal indeterminate ProgressBar -
LoadingDrawable
some android loading drawable, can be combined with any View as the loading View and Progressbar, and is especially suitable for the loading animation of the RecyclerRefreshLayout. -
Android-RoundCornerProgressBar
Round Corner Progress Bar Library for Android -
AndroidFillableLoaders
Android fillable progress view working with SVG paths. This is a nice option too if you want to create an interesting branding logo for your app. Based on the iOS project: -
KProgressHUD
An implement of ProgressHUD for Android, similar to MBProgressHUD, SVProgressHUD for iOS. -
android-HoloCircularProgressBar
Holo Circular ProgressBar -
AnimatedCircleLoadingView
An animated circle loading view -
MaterialLoadingProgressBar
MaterialLoadingProgressBar provide a styled ProgressBar which looks like SwipeRefreshLayout's loading indicator(support-v4 v21+) -
CircleProgressBar
A circular android ProgressBar library which extends ProgressBar, It has both solid and line two styles. Besides, progress value can be freely customized. -
DownloadProgressBar
Android progress bar with cool animation, inspired by : -
ColorArcProgressBar
A customizable circular progressbar, which can achieve the effect of the QQ health's arc progress and dashboard. -
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! -
ProgressPieView
Android library for showing progress in a highly customizable pie. -
Percentage Chart View
custom_view, progress_bar, chart -
State Views for Android
Create & Show progress, data or error views, the easy way! -
circular-slider-android
Circular Slider is a custom-built Android View used for choosing numbers. It works similarly to the regular slider control (SeekBar), just goes around in a circular fashion - simple enough. Note that the thumb scroller (the thing you drag around) can be either a solid-color circle or a custom drawable (like a PNG image). -
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
💈 [Android Library] Stacked dual progress indicator progressbar -
N-SidedProgressBar
Progress Bar in the shape of regular polygon. -
FillProgressLayout
A simple and flexible Fillable Progress Layout written in Kotlin -
TerminalSeekBar
A smart seek bar with multiple junction points at random seek position.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
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.