All Projects â†’ flyou â†’ Niceprogressbar

flyou / Niceprogressbar

Licence: apache-2.0
a nice progressbar for android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Niceprogressbar

Material Progressview
🔥A beautiful, gradual and simple used progress view for android.
Stars: ✭ 406 (+997.3%)
Mutual labels:  easy-to-use, progressbar
Tic Tac
Client not paid ? This is the solution of your problem
Stars: ✭ 29 (-21.62%)
Mutual labels:  easy-to-use
React Circular Progressbar
A circular progressbar component, built with SVG and extensively customizable
Stars: ✭ 742 (+1905.41%)
Mutual labels:  progressbar
Vvcircleprogressbar
A custom circle progress bar with pulse animation.
Stars: ✭ 26 (-29.73%)
Mutual labels:  progressbar
Ringprogressbar
A material design circle the progress bar.
Stars: ✭ 789 (+2032.43%)
Mutual labels:  progressbar
Mcdowell Cv
A Nice-looking CV template made into LaTeX
Stars: ✭ 855 (+2210.81%)
Mutual labels:  easy-to-use
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+1743.24%)
Mutual labels:  progressbar
Ggql
GraphQL implementation for golang.
Stars: ✭ 37 (+0%)
Mutual labels:  easy-to-use
Easy Crypto
A WIP module aimed at providing a safer, easier to use and beginner friendly crypto API for Node.js
Stars: ✭ 21 (-43.24%)
Mutual labels:  easy-to-use
Halite
High-level cryptography interface powered by libsodium
Stars: ✭ 933 (+2421.62%)
Mutual labels:  easy-to-use
Floatingtextfield
FloatingTextField is the simplest way to use custom textField with an animation placeholder. Secure textField, You can set the Left & Right image also can handle image left/right image click for any action.
Stars: ✭ 25 (-32.43%)
Mutual labels:  easy-to-use
Ngx Progressbar
Angular progress bar ☄
Stars: ✭ 813 (+2097.3%)
Mutual labels:  progressbar
Ezfn Lobbybot
With EasyFNBot you can easily create you own Fortnite Lobby Bot in less than 5 minutes which will be online forever!
Stars: ✭ 6,875 (+18481.08%)
Mutual labels:  easy-to-use
Go Pretty
Pretty print tables and more in golang!
Stars: ✭ 777 (+2000%)
Mutual labels:  progressbar
Android Holocircularprogressbar
Holo Circular ProgressBar
Stars: ✭ 966 (+2510.81%)
Mutual labels:  progressbar
Capsule Network Tutorial
Pytorch easy-to-follow Capsule Network tutorial
Stars: ✭ 722 (+1851.35%)
Mutual labels:  easy-to-use
Roundprogresstextview
TextView with Round Pogress
Stars: ✭ 18 (-51.35%)
Mutual labels:  progressbar
Vue Step Progress
A simple Vue component that displays a Progress Bar with labels for each step
Stars: ✭ 26 (-29.73%)
Mutual labels:  progressbar
React Customizable Progressbar
Customizable circular progress bar component for React 🍩
Stars: ✭ 37 (+0%)
Mutual labels:  progressbar
Progressbar.js
Responsive and slick progress bars
Stars: ✭ 7,499 (+20167.57%)
Mutual labels:  progressbar

NiceProgressBar

a nice progressbar for android

step 1

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        compile 'com.github.flyou:NiceProgressBar:1.0.2'
}

step 2

add in you xml

  <com.xdja.progressbarlibrary.NiceProgressBar
        android:id="@+id/progressbar1"
        android:layout_width="150dp"
        android:layout_height="150dp"

        />

step 3

 this.progressbar1 = (NiceProgressBar) findViewById(R.id.progressbar1);
 progressbar1.setTextMax(88).show();

more

    progressbar2.setTextMax(33)
    .setTextColor(getResources().getColor(R.color.red))
    .setDefaultWheelColor(getResources().getColor(R.color.sandybrown))
    .setWheelColor(getResources().getColor(R.color.yellow))
    .show();

setpercent type and Listener

 progressbar3.setTextMax(100)
    .showWithPercent(true)
            .setProgressBarListener(new NiceProgressBar.ProgressBarListener() {
                @Override
                public void onProgressBarComplete() {
                    // TODO: do what you want
                }

                @Override
                public void onProgressBarStart() {
                    // TODO: do what you want
                }
            })
    .show();

}

License

NiceProgressBar is under the Apache2.0 license. See the LICENSE file for details.

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].