/RxDialog

Deprecated(已废弃)

Primary LanguageKotlin

RxDialog

An easy-to-use Dialog management tool.

Usage

This tool is still in development and we don't provide its dependencies by the Gradle compile.

Show your dialog at somewhere:

button.setOnClickListener {
         RxDialog
                .build(this) {
                    title = "I am title"
                    message = "I am message"
                    buttons = arrayOf(
                            EventType.CALLBACK_TYPE_POSITIVE,
                            EventType.CALLBACK_TYPE_NEGATIVE,
                            EventType.CALLBACK_TYPE_DISMISS
                    )
                    positiveText = getString(R.string.static_dialog_button_ok)
                    positiveTextColor = R.color.positive_color
                    negativeText = getString(R.string.static_dialog_button_cancel)
                    negativeTextColor = R.color.negative_color
                    cancelable = false
                }
                .subscribe{ event ->
                      when (event.button) {
                          EventType.CALLBACK_TYPE_POSITIVE -> {
                              toast("click the OK")
                          }
                          EventType.CALLBACK_TYPE_NEGATIVE -> {
                              toast("click the CANCEL")
                          }
                          EventType.CALLBACK_TYPE_DISMISS -> {
                              toast("dismiss...")
                          }
                      }
                }
}

in Java:

 RxDialog
        .Companion
        .build(this, builder -> {
            builder.withTitle(R.string.static_dialog_title)
                    .withMessage(R.string.static_dialog_message)
                    .withButtons(new EventType[]{
                            EventType.CALLBACK_TYPE_DISMISS,
                            EventType.CALLBACK_TYPE_NEGATIVE,
                            EventType.CALLBACK_TYPE_POSITIVE
                    })
                    .withNegativeText(R.string.static_dialog_button_cancel)
                    .withNegativeTextColor(R.color.negative_color)
                    .withPositiveTextColor(R.color.positive_color)
                    .withPositiveText(R.string.static_dialog_button_ok);
            return null;
        })
        .subscribe(event -> {
               switch (event.getButton()) {
                   case CALLBACK_TYPE_POSITIVE:
                       toast("click the OK");
                       break;
                   case CALLBACK_TYPE_NEGATIVE:
                       toast("click the CANCEL");
                       break;
                   case CALLBACK_TYPE_DISMISS:
                       toast("dismiss...");
                       break;
               }
        });

Another author's libraries using RxJava:

  • RxImagePicker: The library which choosing pictures from camera or gallery in Android.
  • RxSchedulers: The schedulers tools for RxJava2 in Android.

License

The RxDialog License

Copyright (c) 2018 qingmei2

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.