BottomDialogs Versions Save

An Android library that shows a customizable Material-based bottom sheet. API 11+ required.

1.2.1

7 years ago
  • Fixed #8, #17

1.2

7 years ago
  • Added custom background and text color to the buttons. See: Adding buttons and callbacks. Thanks to @kunny.
  • Added autoDismiss(). If the method is false, then you must manually dismiss the dialogs when using the button callbacks. Default is true.
  • Fixed #6, #16
  • Updated buildTools to 24.0.2

1.1

7 years ago
  • The builder has been changed by this one:
new BottomDialog.Builder(this)
        .setTitle("Awesome!")
        .setContent("What can we improve? Your feedback is always welcome.")
        .show();
BottomDialog bottomDialog = new BottomDialog.Builder(this)
        .setTitle("Awesome!")
        .setContent("What can we improve? Your feedback is always welcome.")
        .build();
...
bottomDialog.show();
  • Added dismiss() method.

1.0.1

7 years ago
  • Negative button will be displayed properly.

1.0

7 years ago

Initial release.