Skip to content

yzcheng90/AlertView

Repository files navigation

android AlertView

A very simple dialog alert

###Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

###Step 2. Add the dependency

dependencies {
        compile 'com.github.yzcheng90:AlertView:1.0'
}

Or clone to local

compile project(path: ':alertlibrary')

invoking

 new DialogAlert(activity,DialogAlert.ALERT_DEFAULT)
                .setMsg("这里是消息内容")
                .setTitle("提示信息")
                .setSubmitText("确定")
                .setCancelText("取消")
                .showAlert()
                .setOnDialogAlertClickListener(new DialogAlert.OnDialogAlertClickListener() {
                    @Override
                    public void onSubmitClick(DialogAlert d) {
                        d.dismiss();
                    }

                    @Override
                    public void onCancelClick(DialogAlert d) {
                        d.dismiss();
                    }
                });

image image image image image

About

一个非常简洁的android dialog alert

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages