DelayedProgress alternatives and similar packages
Based on the "Progressbar/Progress View Widget" category.
Alternatively, view DelayedProgress 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-square-progressbar
An android library to display a progressbar that goes around an image. -
android-HoloCircularProgressBar
Holo Circular ProgressBar -
MaterialLoadingProgressBar
MaterialLoadingProgressBar provide a styled ProgressBar which looks like SwipeRefreshLayout's loading indicator(support-v4 v21+) -
AnimatedCircleLoadingView
An animated circle loading view -
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 -
Dilating Dots Progress Bar
An animated progress indicator -
ProgressPieView
Android library for showing progress in a highly customizable pie. -
ColoringLoading
This project provide Coloring Loading View for Android. And this project is not using the image file! -
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). -
ACProgressLite
A lightweight Android library to display customizable progressbar like iOS MBProgressHUD. -
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 -
StackedHorizontalProgressBar
💈 [Android Library] Stacked dual progress indicator progressbar -
FillProgressLayout
A simple and flexible Fillable Progress Layout written in Kotlin -
N-SidedProgressBar
Progress Bar in the shape of regular polygon. -
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 DelayedProgress or a related project?
README
DelayedProgress
ProgressBar and ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the they will be visible for a minimum amount of time to avoid "flashes" in the UI.
They extend platform version of them so that you can just replace all of your ProgressBar and ProgressDialog implementations quickly.
How does it look like?
Here is a demonstration of the usage in GDG Android App. As you can see here, on orientation change, the data is loaded quickly and has no progress indicator.
Usage
DelayedProgressBar
DelayedProgressBar
is an extension to ProgressBar
that handles automatic delaying and prevents flashes in the UI.
You can create it programatically just like you do with ProgressBar
or you can use it in your XMLs.
<com.tasomaniac.android.widget.DelayedProgressBar
android:id="@android:id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
style="?android:progressBarStyleHorizontal"/>
And you have to use show()
and hide()
functions instead of setting its visibility manually to have awesome delaying functionality.
Additionally we have show(boolean animate)
and hide(boolean animate)
that fades in and out the ProgressBar
.
progressbar.show(true);
Lastly, if you want to do something when the animation ends, you can use the below function with endAction.
progressbar.show(true, new Runnable() {
@Override
public void run() {
//Do something
}
});
progressbar.hide(true, new Runnable() {
@Override
public void run() {
//Do something
}
});
DelayedProgressDialog
DelayedProgressDialog
is an extension to ProgressDialog
that handles automatic delaying and prevents flashes in the UI.
You can use it just like ProgressDialog
. Just use show()
and dismiss()
appropriately and it will handle the rest.
To create a DelayedProgressDialog
with default timing values
DelayedProgressDialog.showDelayed(context, title, message, indeterminate, cancelable);
You can use make()
to just create (without calling show()
) it manually. This way you can modify it easily before calling show()
DelayedProgressDialog.makeDelayed(context, title, message, indeterminate, cancelable);
And configure
DelayedProgressDialog dialog = DelayedProgressDialog.make(...);
dialog.setMinDelay(2000);
dialog.setMinShowTime(500);
dialog.show();
Download
compile 'com.tasomaniac:delayed-progress:0.4'
Snapshots of the development version are available in Sonatype's snapshots
repository.
License
Copyright (C) 2015 Said Tahsin Dane
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the DelayedProgress README section above
are relevant to that project's source code only.