Releases: javiersantos/BottomDialogs
Releases · javiersantos/BottomDialogs
Version 1.2.1
Version 1.2
- Added custom background and text color to the buttons. See: Adding buttons and callbacks. Thanks to @kunny.
- Added
autoDismiss()
. If the method isfalse
, then you must manually dismiss the dialogs when using the button callbacks. Default istrue
. - Fixed #6, #16
- Updated buildTools to 24.0.2
Version 1.1
- 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
- Negative button will be displayed properly.
Version 1.0
Initial release.