Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Sweet Alert Dialog | 7,198 | 737 | 1 | 2 years ago | 3 | December 08, 2014 | 164 | Java | ||
SweetAlert for Android, a beautiful and clever alert dialog | ||||||||||
Userdialogs | 943 | 616 | 107 | 5 months ago | 130 | August 27, 2022 | mit | C# | ||
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 | ||||||||||
Wxrecodervideo | 597 | 4 years ago | 13 | Java | ||||||
基于VCamera,仿微信录制短视频 | ||||||||||
Aosf | 564 | 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等,应有尽有。 | ||||||||||
Materialdoc | 494 | 5 years ago | 8 | Java | ||||||
Progress_dialog | 194 | 23 | 10 | 3 years ago | 23 | June 06, 2020 | 14 | apache-2.0 | Dart | |
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 Pc | 185 | a year ago | 5 | Vue | ||||||
基于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 分页等等 | ||||||||||
Kalertdialog | 161 | 22 days ago | 1 | March 26, 2019 | 1 | apache-2.0 | Java | |||
AlertDialog for Android, a beautiful and material alert dialog to use in your android app. | ||||||||||
Aiforms.dialogs | 155 | 1 | 1 | 10 months ago | 19 | April 08, 2022 | 5 | mit | C# | |
AiForms.Dialogs for Xamarin.Forms | ||||||||||
Bootstrap Waitingfor | 136 | 2 years ago | 1 | February 23, 2018 | 10 | mit | JavaScript | |||
"Waiting for..." modal dialog with progress bar for Bootstrap |
This is a simple but effective animated Loading Indicator which can easily ready to use integrated few lines of code.
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'
}
// 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()
// 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();
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