Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
app
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

LoadingButton

License Build Status Android Arsenal

Demo

Usage

Step 1

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

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

Add dependency in your app level build.gradle.

dependencies {
  implementation 'com.github.andreasagap:LoadingButtonLibrary:v1.0'
}

Step 2

In xml

<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:id="@+id/root"
    android:layout_height="match_parent">

    <andreasagap.loadingbutton.ButtonLoading
        android:id="@+id/loadingbutton"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        app:BL_backgroundColor="#9c9b9999"
        app:BL_backgroundDisableColor="#00AFEF"
        app:BL_circleColor="#00AFEF"
        app:BL_circleColorSecond="#8000AFEF"
        app:BL_enable="true"
        app:BL_stateShow="normal"
        app:BL_text="Login"
        app:BL_textColor="#ffffff"
        app:BL_textDisableColor="#000000"
        app:BL_textSize="16sp"/>

</android.support.constraint.ConstraintLayout>

In activity or fragment

ConstraintLayout root=findViewById(R.id.root);
ButtonLoading buttonLoading=findViewById(R.id.loadingbutton);
buttonLoading.setRoot(buttonLoading,this,root);
buttonLoading.setOnButtonLoadingListener(new ButtonLoading.OnButtonLoadingListener() {
    @Override
    public void onClick() {
                //...
    }
    @Override
    public void onStart() {

                //...
    }
    @Override
    public void onFinish() {
                //...

    }
});

End Progress

Just call buttonLoading.cancel(); and the button moves to its original position.
Without cancel(), the function onFinish() doesn't start.

Configure XML

  • BL_backgroundColor
  • BL_backgroundDisableColor
  • BL_circleColor color
  • BL_circleColorSecond
  • BL_stateShow: normal,animationStart,progress,animationFinish | default value is normal
  • BL_text: text button
  • BL_textColor
  • BL_textDisableColor
  • BL_textSize
  • BL_enable
  • BL_font: address font in assets. example: file in assetst > fonts > arial.ttf ==> fonts/arial.ttf

Credits

This library was based on this repo: https://github.com/rasoulmiri/ButtonLoading 👏

You can’t perform that action at this time.