Skip to content

andreasagap/LoadingButtonLibrary

Repository files navigation

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 👏

About

A loading button with animaton

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy