/ProgressImage_Android

Remove the default indeterminate progress and use a meaningful icon as a progress.

Primary LanguageJavaMIT LicenseMIT

ProgressImage Android

ProgressImage is a Library for modern progress view style. Use any icon/image with progress view for your application

Samples :

Progress Image

Progress Image

Installation

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.mmoamenn:ProgressImage_Android:0.0.2'
}

XML

<com.bluehomestudio.progressimage.ProgressPicture
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_action_name"
    ProgressPicture:animation="fade" />

You must use the following properties in your XML to change progress animation

ProgressPicture:animation

  • fade -> default
  • scale
  • rotate
  • rotate_x
  • rotate_y

JAVA

Functions to use after reference the ProgressPicture

  • startAnimation();
  • stopAnimation();
  • stopAnimationAndHide();