Popularity
0.4
Stable
Activity
0.0
Stable
2
1
1

Description

Split ProgressBar For Android is a library for Showing Progress In a much easier and Beautiful Way.

Programming language: Java
Latest version: v1.5.7

Split ProgressBar For Android alternatives and similar packages

Based on the "Progressbar/Progress View Widget" category.
Alternatively, view Split ProgressBar For Android alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Split ProgressBar For Android or a related project?

Add another 'Progressbar/Progress View Widget' Package

README

Split ProgressBar For Android

Split ProgressBar For Android is a library for Showing Progress In a much easier and Beautiful Way.

Installation

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


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

Fetch Using Gradle :


dependencies {
            implementation 'com.github.ankit1057:SplitProgressBar:Tag'
    }

Usage

SplitProgressDialog progressDialog = new SplitProgressDialog(MainActivity.this);
                progressDialog.setCancelable(true);
                progressDialog.setTitle(R.string.app_name);
                progressDialog.resizeDialog(500, 500);
                Drawable drawable = new ColorDrawable(Color.BLACK);
                progressDialog.setBackgroundColor(drawable);
                progressDialog.show();

For Updating Progress:

  progressDialog.setProgress(progress);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.