| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2016-06-16 | 502 Bytes | |
| Version 1.1 source code.tar.gz | 2016-06-16 | 2.3 MB | |
| Version 1.1 source code.zip | 2016-06-16 | 2.3 MB | |
| Totals: 3 Items | 4.6 MB | 0 | |
-
The builder has been changed by this one:
:::Java new BottomDialog.Builder(this) .setTitle("Awesome!") .setContent("What can we improve? Your feedback is always welcome.") .show();
:::Java BottomDialog bottomDialog = new BottomDialog.Builder(this) .setTitle("Awesome!") .setContent("What can we improve? Your feedback is always welcome.") .build(); ... bottomDialog.show(); - Added
dismiss()method.