Home

Awesome

Download Build Status

Swipe-Button

enter image description here

Library of an android button activated by swipe.

Installation

compile 'com.ebanx:swipe-button:[latestVersion]'

How to use

Add the button in your layout file and customize it the way you like it.

<com.ebanx.swipebtn.SwipeButton
    android:id="@+id/swipe_btn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="20dp"
    android:layout_marginEnd="20dp"
    app:inner_text="SWIPE"
    app:inner_text_color="@android:color/white"
    app:inner_text_size="16sp"
    app:inner_text_top_padding="18dp"
    app:inner_text_bottom_padding="18dp"
    app:inner_text_background="@drawable/shape_rounded"
    app:button_image_height="60dp"
    app:button_image_width="100dp"
    app:button_image_disabled="@drawable/ic_lock_open_black_24dp"
    app:button_image_enabled="@drawable/ic_lock_outline_black_24dp"
    app:button_left_padding="20dp"
    app:button_right_padding="20dp"
    app:button_top_padding="20dp"
    app:button_bottom_padding="20dp"
    app:button_background="@drawable/shape_button"
    app:initial_state="disabled"
    app:has_activate_state="true"
    />
    

Setting the sliding button size

You can set the size of the moving part of the button by changing the app:button_image_width and app:button_image_height properties.

Setting the text part size

You can set the size of the fixed part of the button by setting the text size of the setting the padding in this part.

Listening for changes

You can set a listener for state changes

SwipeButton enableButton = (SwipeButton) findViewById(R.id.swipe_btn);
enableButton.setOnStateChangeListener(new OnStateChangeListener() {
      @Override 
      public void onStateChange(boolean active) {
           Toast.makeText(MainActivity.this, "State: " + active, Toast.LENGTH_SHORT).show();
      } 
}); 

Or listen for the activation of the button

swipeButtonNoState.setOnActiveListener(new OnActiveListener() {
            @Override
            public void onActive() {
                Toast.makeText(MainActivity.this, "Active!", Toast.LENGTH_SHORT).show();
            }
        });

Configure XML

CodePen

If you would like to see a front-end version of this button you can check a codepen in this link:

Bugs and features

For bugs, feature requests, and discussion please use GitHub Issues.

Credits

And that's it! Enjoy!

Written with StackEdit.