Skip to content

ankit1057/SplitProgressBar

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages