SwipeAwayDialog

Additional

Language
Java
Version
N/A
Created
Aug 27, 2015
Updated
Nov 23, 2018 (Retired)
Owner
Keita Kajiwara (kakajika)
Contributor
Keita Kajiwara (kakajika)
1
Activity
Badge
Generate
Download
Source code

SwipeAwayDialog

Android DialogFragment that enables Dialog to be swiped away to dismiss.
It's extremely easy to make Tinder-like UI.

Install

dependencies {
    compile 'com.labo.kaji:swipeawaydialog:0.1.1'
}

Usage

Just extend SwipeAwayDialogFragment instead of DialogFragment.

public class ExampleDialogFragment extends SwipeAwayDialogFragment {
    // Implement DialogFragment as usual.
}

If you want to handle swiped away event, implement onSwipedAway.
You can prevent dismissing by returning true.

@Override
public boolean onSwipedAway(boolean toRight) {
    return false;
}

License

MIT License.