Skip to content

Releases: javiersantos/BottomDialogs

Version 1.2.1

23 Sep 10:51

Choose a tag to compare

Version 1.2

29 Aug 17:37

Choose a tag to compare

  • 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

Version 1.1

16 Jun 10:40

Choose a tag to compare

  • 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.

Version 1.0.1

15 Jun 14:35

Choose a tag to compare

  • Negative button will be displayed properly.

Version 1.0

14 Jun 19:06

Choose a tag to compare

Initial release.