Description
A simple and flexible Fillable Progress Layout written in Kotlin
FillProgressLayout alternatives and similar packages
Based on the "Progressbar/Progress View Widget" category.
Alternatively, view FillProgressLayout 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. -
KProgressHUD
An implement of ProgressHUD for Android, similar to MBProgressHUD, SVProgressHUD for iOS. -
AndroidFillableLoaders
Completely customizable progress based loaders drawn using custom CGPaths written in Swift -
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! -
ACProgressLite
Android loading or progress dialog widget library, provide efficient way to implement iOS like loading dialog and progress wheel -
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.
CodeRabbit: AI Code Reviews for Developers
* 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 FillProgressLayout or a related project?
README
FillProgressLayout :fire:A simple and flexible Fill Progress Layout written in Kotlin:fire:
Netflix button animation using FillProgressLayout
Support Library alternative is available here
Installation
Add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
Add the dependency in app gradle
dependencies {
implementation 'com.github.JDevZone:FillProgressLayout:{latest_version}'
}
Basic usage
As
FillProgressLayout
is direct child ofLinearLayout
you can replace LinearLayout with it as follows
<com.devzone.fillprogresslayout.FillProgressLayout
android:id="@+id/fillL"
android:layout_margin="30dp"
app:fpl_backgroundColor="@color/colorRedTrans"
app:fpl_progressColor="@color/colorGreenTrans"
app:fpl_isRounded="false"
app:fpl_progress="0"
app:fpl_progressDuration="3000"
app:fpl_progressDirection="left_to_right"
app:fpl_shouldRestart="false"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<--childviews-->
</com.devzone.fillprogresslayout.FillProgressLayout>
Alternatively
You can use
FillProgressLayout
as background for other layouts.
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<--as background for AppCompatTextView-->
<com.devzone.fillprogresslayout.FillProgressLayout
android:layout_alignBottom="@+id/tv"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv"
android:text="@string/app_name"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
Samples
Fill Direction | Demo |
---|---|
Left To Right | |
Right To Left | |
Top To Bottom | |
Bottom To Top |
Additional
Rounded Corners sample
Gradient Progress sample
Customisation
Here are the attributes you can specify through XML or related setters programatically:
fpl_backgroundColor
- Set background color.fpl_progressColor
- Set progress color.fpl_isRounded
- Set true if you need rounded corners.fpl_roundedCornerRadius
- Set radius for round corners.fpl_progress
- Set current progress.fpl_progressDuration
- Set fill duration.fpl_shouldRestart
- Set if progress filling should restart from 0.fpl_progressDirection
- Set fill direction. i.e.left_to_right
,right_to_left
,top_to_bottom
orbottom_to_top
fpl_gradientColors
- Set array of gradient colors i.e.@array/gradientColors
fpl_gradientMovement
- Set true for gradient movement with progress and false for static fillingfpl_gradientDirection
- Set Gradient direction. i.e.left_to_right
,right_to_left
,top_to_bottom
,bottom_to_top
,top_left_to_bottom_right
,top_right_to_bottom_left
,bottom_right_to_top_left
orbottom_left_to_top_right
📄 License
FillProgressLayout is released under the MIT license. See [LICENSE](./LICENSE.txt) for details.
*Note that all licence references and agreements mentioned in the FillProgressLayout README section above
are relevant to that project's source code only.