Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Material Dialog v2.2.2 source code.tar.gz | 2021-04-25 | 8.9 MB | |
Material Dialog v2.2.2 source code.zip | 2021-04-25 | 9.0 MB | |
README.md | 2021-04-25 | 906 Bytes | |
Totals: 3 Items | 17.9 MB | 0 |
This is a patch release including improvements.
🔮 What's new?
[#49] Generic Message support: Support for separate plain text and Spanned text
Added support for plain text (i.e. `String`) as well as `Spanned` text for dialog's message. _Earlier, in `v2.2.1`, there was only support for spanned formatted text for the message which was not generic. This fix now provides both the available configuration as per the need of the developer and the use case._ For example, - ***To set plain text message for dialog:*** ```java .setMessage("Lorem Ipsum") ``` - ***To Spanned text message for dialog:*** ```java .setMessage(Html.fromText("Lorem Ipsum")) ```
Many thanks 🙏 to @Awsom3D for suggesting this improvement and helping to make this library better 🚀.