Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierry committed Jan 8, 2018
2 parents 59ff7c0 + 77bd437 commit 705fcae
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
Progress
=====

- Versão 1.0
- SDK Min: 21

![](https://raw.githubusercontent.com/Pierry/Progress/master/art/custom.png)
![](https://raw.githubusercontent.com/Pierry/Progress/master/art/dark.png)
![](https://raw.githubusercontent.com/Pierry/Progress/master/art/light.png)


Gradle
====

Into your app build.gradle:

repositories {
maven { url "https://jitpack.io" }
}

dependencies {
compile 'com.github.Pierry:Progress:1.0'
}

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


Usage
=====

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

Create a Progress:

Progress progress = new Progress(view.getContext());

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

0 comments on commit 705fcae

Please sign in to comment.