InfiniteIndicator alternatives and similar packages
Based on the "Progressbar/Progress View Widget" category.
Alternatively, view InfiniteIndicator alternatives based on common mentions on social networks and blogs.
-
NumberProgressBar
A beautiful, slim Android ProgressBar. -
SmoothProgressBar
A small Android library allowing you to have a smooth and customizable horizontal or circular indeterminate ProgressBar -
CircleProgress
CircleProgress, DonutProgress, ArcProgress -
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. -
ProgressWheel
A progress wheel for android, intended for use instead of the standard progress bar. -
Android-RoundCornerProgressBar
[Android] Round Corner Progress Bar Library for Android -
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. -
android-square-progressbar
An android library to display a progressbar that goes around an image. -
GoogleProgressBar
Android library to display progress like google does in some of his services. -
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. -
android-HoloCircularProgressBar
Holo Circular ProgressBar -
ArcProgressStackView
Present your progress bars in arc mode with information and total control. -
AnimatedCircleLoadingView
An animated circle loading view -
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. -
ColorArcProgressBar
This is beautiful color arc progress bar. -
Loading Progress
A highly configurable library to do loading progress with animated balls -
RefreshActionItem
Android - An action bar item which acts both as a refresh button and as a progress indicator -
Dilating Dots Progress Bar
A customizable indeterminate progress bar -
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
An Android percentage chart that displays the progress of any single given task or information. -
WheelIndicatorView
A 'Google Fit' like activity indicator for Android -
MaskProgressView
Yet another android custom progress view for your music player -
State Views for Android
Create & Show progress, data or error views, the easy way! -
circular-slider-android
Circular Slider UI Control for Android -
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 -
MultiProgressBar
Open source android library for different progress bar designs -
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. -
NumberPicker
A simple customizable NumberPicker plugin for Android -
StackedHorizontalProgressBar
:barber: [Android Library] Stacked dual progress indicator progress-bar -
TinglingSquares
⏳ A delightful progress animation that you'll fall in ❤️️ with, very easily. -
ArcPointer
Arc pointer - simple customized progress bar in the form of an arch -
CoolProgressViews
Android library with collection of cool progress views. -
MusicBar
view visualize progress bar for sound file like sound cloud -
FillProgressLayout
A simple and flexible Fillable Progress Layout written in Kotlin -
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. -
ProgressRingView
A simple lib to create a ring-like progress view with corner edges -
N-SidedProgressBar
Progress Bar in the shape of regular polygon.
Appwrite - The open-source backend cloud platform
* 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 InfiniteIndicator or a related project?
README
InfiniteIndicator
This project is inspired by the android-auto-scroll-view-pager of Trinea. Use the salvage lib implement view recycle adapter.It contains two style.One is CircleIndicator seperated from Android-ViewPagerIndicator.Another is copy from CircleIndicator.You can custome style and animation.
Screenshot
Demo Download
APK Donwload
Setting
You can config all feature in the IndicatorConfiguration
class.It adopt builder design pattern.
interval(long)
set interval time of scroll in milliseconds, default isDEFAULT_INTERVAL
.direction(int)
set scroll direction, default isRIGHT
.isLoop(boolean)
set whether still scroll when scroll to the end page,default is trueisAutoScroll(boolean)
whether start scroll while notiyDataChange.scrollDurationFactor(double)
set the factor of scroll durationisStopWhenTouch(boolean)
whether stop scroll while touching, default is true.position
set the position of indicator.More value,you can referenceIndicatorConfiguration.IndicatorPosition
enumviewBinder
set custom view binder to handle page load logic,default provide BaseViewBinder, which just support image load,and you must provide a imageloader,if you want to load complex page ,you can provide a custome viewbinder,and imageloader is useless.onPageChangeListener
set click listener to pageimageLoader(ImageLoader)
set the loader engine to load image while page sliding.You can use any image loader library you what,there are several imageloader of Glide ,Picasso and UIL,decide how to load image,is absolutely free.
indicator_type
the style of Indicator,you can set indicator_type
attribute in the xml
layout to change the indicator style.
indicator_default
CirCleIndicatorindicator_anim_circle
AnimCircleIndicatorindicator_anim_line
AnimLineIndicator
Including In Your Project
compile 'cn.lightsky.infiniteindicator:library:1.2.2'
Usage
<cn.lightsky.infiniteindicator.InfiniteIndicatorLayout
android:id="@+id/indicator_default_circle"
app:indicator_type="indicator_anim_circle"
android:layout_height="wrap_content"
android:layout_width="match_parent"/>
class AnimIndicatorActivity extends FragmentActivity implements ViewPager.OnPageChangeListener,OnPageClickListener {
private ArrayList<Page> pageViews;
private InfiniteIndicator mAnimCircleIndicator;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_anim_indicator);
initData();
mAnimCircleIndicator = (InfiniteIndicator) findViewById(R.id.infinite_anim_circle);
IndicatorConfiguration configuration = new IndicatorConfiguration.Builder()
.imageLoader(new UILoader())
.isStopWhileTouch(true)
.onPageChangeListener(this)
.onPageClickListener(this)
.direction(LEFT)
.position(IndicatorConfiguration.IndicatorPosition.Center)
.build();
mAnimCircleIndicator.init(configuration);
mAnimCircleIndicator.notifyDataChange(pageViews);
}
private void initData() {
pageViews = new ArrayList<>();
pageViews.add(new Page("A", "https://raw.githubusercontent.com/lightSky/InfiniteIndicator/master/res/a.jpg",this));
pageViews.add(new Page("B", "https://raw.githubusercontent.com/lightSky/InfiniteIndicator/master/res/b.jpg",this));
pageViews.add(new Page("C", "https://raw.githubusercontent.com/lightSky/InfiniteIndicator/master/res/c.jpg",this));
pageViews.add(new Page("D", "https://raw.githubusercontent.com/lightSky/InfiniteIndicator/master/res/d.jpg",this));
}
//To avoid memory leak ,you should release the res
@Override
protected void onPause() {
super.onPause();
mAnimCircleIndicator.stop();
}
@Override
protected void onResume() {
super.onResume();
mAnimCircleIndicator.start();
}
@Override
public void onPageSelected(int position) {
//do something
}
@Override
public void onPageClick(int position, Page page) {
//do something
}
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
}
@Override
public void onPageScrollStateChanged(int state) {
}
}
Thanks
android-auto-scroll-view-pager
AndroidImageSlider
CircleIndicator
Android-ViewPagerIndicator
About me
Weibo: light_sky
Blog: lightskystreet.com light_sky
Email: [email protected]