All Projects → MasayukiSuda → Animatehorizontalprogressbar

MasayukiSuda / Animatehorizontalprogressbar

A tiny customView makes very easier ProgressBar anitmation horizontal.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Animatehorizontalprogressbar

RoundedHorizontalProgressBar
RoundedHorizontalProgressBar - An Android custom rounded Progress Bar that supports different Colors as progress both primary & background colors. Allows you to animate the progress for a specific duration
Stars: ✭ 34 (-87.41%)
Mutual labels:  progress-bar
Loaders
Process dialogs, loading bars, etc.
Stars: ✭ 23 (-91.48%)
Mutual labels:  progress-bar
VHProgressBar
Vartical and Horizontal ProgressBar
Stars: ✭ 23 (-91.48%)
Mutual labels:  progress-bar
rich
Rich is a Python library for rich text and beautiful formatting in the terminal.
Stars: ✭ 36,988 (+13599.26%)
Mutual labels:  progress-bar
LineProgressbar
A light weight jquery progressbar plugin
Stars: ✭ 34 (-87.41%)
Mutual labels:  progress-bar
pqdm
Comfortable parallel TQDM using concurrent.futures
Stars: ✭ 118 (-56.3%)
Mutual labels:  progress-bar
cli-progress
⌛ easy to use progress-bar for command-line/terminal applications
Stars: ✭ 672 (+148.89%)
Mutual labels:  progress-bar
Topbar
Tiny & beautiful site-wide progress indicator
Stars: ✭ 262 (-2.96%)
Mutual labels:  progress-bar
MarioProgressBar
The Mario progress bar for IntelliJ IDEA and other JetBrains IDEs.
Stars: ✭ 29 (-89.26%)
Mutual labels:  progress-bar
circular-progress-bar
Circular progress bar
Stars: ✭ 65 (-75.93%)
Mutual labels:  progress-bar
sosoito
Progress layout collection for Android
Stars: ✭ 14 (-94.81%)
Mutual labels:  progress-bar
angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (-90.37%)
Mutual labels:  progress-bar
react-native-animated-bar
Responsive React Native Animated Progress Bar
Stars: ✭ 46 (-82.96%)
Mutual labels:  progress-bar
react-native-progress-button
A react native button component that can show progress.
Stars: ✭ 17 (-93.7%)
Mutual labels:  progress-bar
progress
Easy progress reporting for D
Stars: ✭ 20 (-92.59%)
Mutual labels:  progress-bar
DottedProgressBar
Simple and powerful animated progress bar with dots
Stars: ✭ 40 (-85.19%)
Mutual labels:  progress-bar
suru
A tqdm-style progress bar in Nim
Stars: ✭ 40 (-85.19%)
Mutual labels:  progress-bar
Progress.swift
⌛️ Add beautiful progress bars to your loops.
Stars: ✭ 265 (-1.85%)
Mutual labels:  progress-bar
svelte-progressbar
A multiseries, SVG progressbar component made with Svelte
Stars: ✭ 85 (-68.52%)
Mutual labels:  progress-bar
ffmpeg-progressbar-cli
A colored progress bar for FFmpeg.
Stars: ✭ 140 (-48.15%)
Mutual labels:  progress-bar

AnimateHorizontalProgressBar

Platform Android Arsenal

A tiny Android library makes very easier ProgressBar anitmation horizontal.

Usage

Include the AnimateHorizontalProgressBar widget in your layout.

    <com.daasuu.ahp.AnimateHorizontalProgressBar
        android:id="@+id/animate_progress_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:ahp_backgroundColor="@color/colorPrimaryDark"
        app:ahp_progressColor="@color/colorAccent" />

In your onCreate method (or onCreateView for a fragment), bind the widget and set default value.


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        AnimateHorizontalProgressBar progressBar = (AnimateHorizontalProgressBar) findViewById(R.id.animate_progress_bar);
        progressBar.setMax(1000);
        progressBar.setProgress(400);
    }

Animate ProgressBar with setProgress

    progressBar.setProgressWithAnim(800);

Animate ProgressBar with setMax

    progressBar.setMaxWithAnim(2000);

Gradle

Add the dependency to your build.gradle.

dependencies {
    compile 'com.daasuu:animateHorizontalProgressBar:0.2.4'
}

Sample Dependencies

License

Copyright 2015 MasayukiSuda

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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