Animatedloadingindicator

Animated Loader or Animated Progress Dialog android code.
Alternatives To Animatedloadingindicator
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Sweet Alert Dialog7,19873712 years ago3December 08, 2014164Java
SweetAlert for Android, a beautiful and clever alert dialog
Userdialogs9436161075 months ago130August 27, 2022mitC#
A cross platform library that allows you to call for standard user dialogs from a core .net standard library, Actionsheets, alerts, confirmations, loading, login, progress, prompt, toast... async just for fun
Wxrecodervideo597
4 years ago13Java
基于VCamera,仿微信录制短视频
Aosf564
4 years ago
AOSF:全称为Android Open Source Framework,即Android优秀开源框架汇总。包含:网络请求okhttp,图片下载glide,数据库greenDAO,链式框架RxJava,组件路由ARouter,消息传递通信EventBus,热更新Tinker,插件化框架Replugin,文件下载FileDownloaer,图片选择PhotoPicker,图片滤镜/毛玻璃等特效处理,GIF图片展示控件,图片九宫格控件NineGridView,对话框Dialog,导航指示器ViewpagerIndicator,进度条ProgressWheel,下拉刷新SmartRefreshLayout,key-value高效数据存储MMKV等,应有尽有。
Materialdoc494
5 years ago8Java
Progress_dialog19423103 years ago23June 06, 202014apache-2.0Dart
A light weight library to easily manage a progress dialog with simple steps whenever you need to do it. You can easily show and hide it.
Vue Ui For Pc185
a year ago5Vue
基于Vue2.x的一套PC端UI组件,包括了Carousel 跑马灯、Cascader 级联、Checkbox 多选框、Collapse 折叠面板、DatePicker 日期选择、Dialog 对话框、Form 表单、Input 输入框、InputNumber 数字输入框、Layer 弹窗层、Loading 加载、Menu 菜单、Page 分页、Progress 进度条、Radio 单选框、SelectDropDown 仿select、Switch 开关、Table 表格、Tabs 标签页、Textarea 文本框、Tooltip 文字提示、BackTop 返回顶部、steps 步骤条、Transfer 穿梭框、Tree 树形、Upload 文件上传、Lazy 图片懒加载、Loading 加载、Pagination 分页等等
Kalertdialog161
22 days ago1March 26, 20191apache-2.0Java
AlertDialog for Android, a beautiful and material alert dialog to use in your android app.
Aiforms.dialogs1551110 months ago19April 08, 20225mitC#
AiForms.Dialogs for Xamarin.Forms
Bootstrap Waitingfor136
2 years ago1February 23, 201810mitJavaScript
"Waiting for..." modal dialog with progress bar for Bootstrap
Alternatives To Animatedloadingindicator
Select To Compare


Alternative Project Comparisons
Readme

AnimatedLoadingIndicator

LoadingIndicator

This is a simple but effective animated Loading Indicator which can easily ready to use integrated few lines of code.

Android SDK version Support:

  • Minimum SDK version is: 15
  • Maximum SDK version is: 29

Demo

AnimatedLoadingIndicator

Android Gradle

LoadingIndicator library Installation

// Add it in your root build.gradle at the end of repositories:
allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
// Add AnimatedLoadingIndicator dependency
dependencies {
	        implementation 'com.github.yash786agg:AnimatedLoadingIndicator:v1.3'
	}

Code to add in your project file for Kotlin User

// Adding Progress Dialog

val progressDialog = Dialog(this)
progressDialog.requestWindowFeature(Window.FEATURE_NO_TITLE)
progressDialog.setContentView(R.layout.custom_dialog_progress)

/* Custom setting to change TextView text,Color and Text Size according to your Preference*/

val progressTv = progressDialog.findViewById(R.id.progress_tv) as TextView
progressTv.text = resources.getString(R.string.loading) 
progressTv.setTextColor(ContextCompat.getColor(this, R.color.colorAccent))
progressTv.textSize = 19F

progressDialog.window!!.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
progressDialog.setCancelable(false)
progressDialog.show()

// Dismiss Progress Dialog

progressDialog.dismiss()
   or
progressDialog.cancel()

Code to add in your project file for Java User

// Adding Progress Dialog

Dialog progressDialog = new Dialog(this);
progressDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
progressDialog.setContentView(R.layout.custom_dialog_progress);

/* Custom setting to change TextView text,Color and Text Size according to your Preference*/

TextView progressTv = progressDialog.findViewById(R.id.progress_tv);
progressTv.setText(getResources().getString(R.string.loading));
progressTv.setTextColor(ContextCompat.getColor(this, R.color.colorAccent));
progressTv.setTextSize(19F);
if(progressDialog.getWindow() != null)
    progressDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));        

progressDialog.setCancelable(false);
progressDialog.show();

// Dismiss Progress Dialog

progressDialog.dismiss();
   or
progressDialog.cancel();

Prerequisites

  • Android Studio 3.4
  • Gradle version 3.4.2
  • Android Device with USB Debugging Enabled

Built With

Thanks for reading this repo. Be sure to click ★ below to recommend this repo if you found it helpful. It means a lot to me.

For more about programming, follow me on Medium

Also, Let’s become friends on Linkedin

Popular Dialog Projects
Popular Progress Projects
Popular User Interface Components Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Sdk
Loading
Gradle
Progress
Dialog
Animated
Loading Animations