-
Notifications
You must be signed in to change notification settings - Fork 29
01 Implementation details
This library provides various builders, which allow to create dialogs, which are designed according to Android 5's "Material Design" guidelines. The guidelines can be found here. The most important builder is implemented in class MaterialDialog.Builder
. It creates dialogs, which are instantiated from the class MaterialDialog
. Such dialogs can contain a title, an icon, a message and up to three buttons. All of these properties are optional. Furthermore, the dialog can be used to display a list view, which contains a specific set of list items, using a specific choice mode. It is also possible to use custom views for displaying the dialog's title, message, content or buttons in order to create a "Material Design"-styled custom dialog. In the following sections it is discussed how dialogs can be created by using the class MaterialDialog.Builder
or other builders, which are provided by the library.