Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.27 KB

README.md

File metadata and controls

38 lines (30 loc) · 1.27 KB

Alerty

Alerty is a simple Alert Dialog Library for Android.

Latest Release

The latest release is available with 1.0.0.

implementation 'com.github.volkanhotur-cci:Alerty:1.0.0-Alfa'

This repo has a sample project. And you can see sample codes below:

new Alerty.Builder(this)
                .setTitle("Test Title")
                .setMessage("Test Message Dialog")
                .setCancellable(false)
                .setPositiveButtonText("DONE")
                .setNegativeButtonText("CANCEL")
                .setHeaderImage(R.drawable.ic_message_red)
                .setPositiveButtonColor(0XFF0EC432)
                .setNegativeButtonColor(0XFF828282)
                .setButtonRadius(16f)
                .setDialogRadius(16f)
                .setTextAppearance(Alerty.MEDIUM_TEXT)
                .setTitleTextColor(0xFF000000)
                .setPositiveListener(new AlertyListener() {
                    @Override
                    public void onDialogClick(Dialog dialog) {
                        Toast.makeText(MainActivity.this, "DONE!", Toast.LENGTH_SHORT).show();
                    }
                })
                .build();

Screenshot

ScreenShot