All Projects → Pierry → Progress

Pierry / Progress

Progress replacing ProgressDialog

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Progress

angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (-50%)
Mutual labels:  progress, progressbar
Progressstatusbar
Another way to show progress. A progress View over the system StatusBar.
Stars: ✭ 283 (+444.23%)
Mutual labels:  progress, progressbar
LineProgressbar
A light weight jquery progressbar plugin
Stars: ✭ 34 (-34.62%)
Mutual labels:  progress, progressbar
Vue Step Progress
A simple Vue component that displays a Progress Bar with labels for each step
Stars: ✭ 26 (-50%)
Mutual labels:  progress, progressbar
Multiprogressview
📊 An animatable view that depicts multiple progresses over time. Modeled after UIProgressView
Stars: ✭ 614 (+1080.77%)
Mutual labels:  progress, progressbar
mp-progress
专注于小程序圆环形进度条的小工具
Stars: ✭ 72 (+38.46%)
Mutual labels:  progress, progressbar
Roundprogresstextview
TextView with Round Pogress
Stars: ✭ 18 (-65.38%)
Mutual labels:  progress, progressbar
ProgressText
A text progress bar with animation effect, highly customized.
Stars: ✭ 13 (-75%)
Mutual labels:  progress, progressbar
Theglowingloader
TheGlowingLoader is the highly configurable library to indicate progress and is natively created for Android Platform. It is an implementation of a design composed by Shashank Sahay.
Stars: ✭ 379 (+628.85%)
Mutual labels:  progress, progressbar
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+39576.92%)
Mutual labels:  progress, progressbar
ProBar
this script will allow you to configure a progress bar with a timer with other options
Stars: ✭ 0 (-100%)
Mutual labels:  progress, progressbar
Ngx Progressbar
Angular progress bar ☄
Stars: ✭ 813 (+1463.46%)
Mutual labels:  progress, progressbar
react-sweet-progress
A way to quickly add a progress bar to react app 🌈
Stars: ✭ 250 (+380.77%)
Mutual labels:  progress, progressbar
stqdm
stqdm is the simplest way to handle a progress bar in streamlit app.
Stars: ✭ 75 (+44.23%)
Mutual labels:  progress, progressbar
GaugeProgressView
Tired of boring Android progress views? This one is amazing!
Stars: ✭ 17 (-67.31%)
Mutual labels:  progress, progressbar
VHProgressBar
Vartical and Horizontal ProgressBar
Stars: ✭ 23 (-55.77%)
Mutual labels:  progress, progressbar
React Sweet Progress
A way to quickly add a progress bar to react app 🌈
Stars: ✭ 239 (+359.62%)
Mutual labels:  progress, progressbar
MatlabProgressBar
This MATLAB class provides a smart progress bar like tqdm in the command window and is optimized for progress information in simple iterations or large frameworks with full support of parallel parfor loops provided by the MATLAB Parallel Computing Toolbox.
Stars: ✭ 44 (-15.38%)
Mutual labels:  progress, progressbar
Circleprogressview
🎡 CircleProgressView是一个圆形渐变的进度动画控件(支持外环显示刻度,内环随之变化,配置参数完全可配),动画效果纵享丝滑。
Stars: ✭ 314 (+503.85%)
Mutual labels:  progress, progressbar
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+1211.54%)
Mutual labels:  progress, progressbar

Progress

  • Versão 1.5
  • SDK Min: 21

Gradle

Into your app build.gradle:

Ensure you add the maven { url "https://jitpack.io" } under allprojects instead of buildscript.

buildscript {
  repositories {
    jcenter()
    // DO NOT ADD IT HERE!!!
  }
  ...
}

allprojects {
  repositories {
    mavenLocal()
    jcenter()
    // ADD IT HERE
    maven { url "https://jitpack.io" }
  }
}


dependencies {
  implementation 'com.github.Pierry:Progress:1.5'
}

Ref. https://jitpack.io/#Pierry/Progress/1.5

Usage

The API is kept as simple as the ProgressDialog(Deprecated):

Create a Progress:

Progress progress = new Progress(context);

Default light:

progress.light(CharSequence);

Default dark:

progress.dark(CharSequence);

Customize it:

progress.setBackgroundColor(getResources().getColor(R.color.your_color))
      .setMessage(CharSequence)
      .setMessageColor(getResources().getColor(R.color.message_color))
      .setProgressColor(getResources().getColor(R.color.progress_color))
      .show();

Methods:

    progress.dark(String message); // set dark theme
    progress.light(String message); // set light theme
    progress.setBackgroundDrawable(Drawable drawable); // set Background layout
    progress.setBackgroundColor(getResources().getColor(R.color.your_color)); // set Background color
    progress.setProgressColor(getResources().getColor(R.color.your_color)); // set ProgressBar color
    progress.setMessageColor(getResources().getColor(R.color.your_color)); // set Message color
    progress.show(); // show ProgressBar
    progress.dismiss(); //dismiss ProgressBar

Questions

Questions regarding Progress can be asked on StackOverflow, using the Progress tag.

Developed By

Pierry Borges - http://pierry.github.io - [email protected]

License

Apache Version 2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].