Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Releases: gcantoni/MenuDialogs

2.0

05 Nov 21:01
b34721f
Compare
Choose a tag to compare

Old codebase was difficult to scale and mantain.
Many redundant layouts have been removed and replaced with parameterized values, declared in styles using Android attrs.
It also improves some memory inefficiency based on chosen data types (e.g.: List has been replaced with int[] when possible).
Finally, it removes unnecessary verbose method calls (e.g.: AlertDialog#show instead of .create().show())

Using this new codebase, it's really easy to add a new dialog just creating a new style and adjusting custom attributes. To create a rounded dialog, it's suggested to use the appropriate base style.

Version 1

01 Nov 09:42
278b927
Compare
Choose a tag to compare

Initial release