MaterialDialog Android Versions Save

📱Android Library to implement animated, 😍beautiful, 🎨stylish Material Dialog in android apps easily.

v2.2.3

2 years ago

🔮 What's new?

  • Added library compatibility with Java 1.8
  • Added library compatibility with Android 11 (API 31)

✅Fixes

  • [#51] Set button alignments to center in dialog

✨ New Contributors

Many thanks🙏 to superstar contributors for improving and helping to make this library better 🚀.

Full Changelog: https://github.com/PatilShreyas/MaterialDialog-Android/compare/v2.2.2...v2.2.3

v2.2.2

3 years ago

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:
    .setMessage("Lorem Ipsum") 
  • To Spanned text message for dialog:
    .setMessage(Html.fromText("<b>Lorem <i>Ipsum</i></b>")) 

Many thanks 🙏 to @Awsom3D for suggesting this improvement and helping to make this library better 🚀.

v2.2.1

3 years ago

🔮 What's new?

  • [#42] Added alignment configuration for title and message. These texts can be aligned at LEFT, CENTER, RIGHT.
  • [#35] Added support for HTML spanned text for dialog message.

✅ Fixes

  • [#44] Added scrolling support for a dialog content (If the message text is too long then for small screen devices, dialog was not sufficient to show details and actions).

Many thanks 🙏 to @Awsom3D @fmeneuhe @yustapps for filing issues and suggesting these improvement features and making this library more usable.

v2.1.1

3 years ago

Major changes

  • Changes in Package: com.shreyaspatil.* to dev.shreyaspatil.*.
  • Library is available on MavenCentral

How to use the library from maven central? See below snippet


repositories {
    mavenCentral()
}

dependencies {

    // Material Dialog Library
    implementation 'dev.shreyaspatil.MaterialDialog:MaterialDialog:2.1.1'
}

v2.1

4 years ago

This release fixes error/warning while using AbstractDialog class in setting buttons on Dialog.

v2.0

4 years ago

This version is stable and with a lot of improvements.

  • BottomSheetMaterialDialog can be instantiated in Fragment. (#18)
  • Provided Custom Styling for dialog. (#17) - Override custom styles for dialog.
  • Fixes Orientation View. (#9) - The animation will not be shown when device orientation is Landscape.

v1.0.0

4 years ago

This is the first release of Material Dialog