This tiny Android library provides Material-Design dialogs.
Add JitPack to your repositories:
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
and add the library to your dependencies:
compile 'com.github.pepperonas:materialdialog:0.3.4'
new MaterialDialog.Builder(this)
.title("MaterialDialog")
.message("This is a simple MaterialDialog.")
.positiveText("OK")
.neutralText("NOT NOW")
.negativeText("CANCEL")
.positiveColor(R.color.green_700)
.neutralColor(R.color.yellow_700)
.negativeColor(R.color.pink_700)
.showListener(new MaterialDialog.ShowListener() {
@Override
public void onShow(AlertDialog d) {
super.onShow(d);
Toast.makeText(MainActivity.this, "onShow", Toast.LENGTH_SHORT).show();
}
})
.dismissListener(new MaterialDialog.DismissListener() {
@Override
public void onDismiss() {
super.onDismiss();
Toast.makeText(MainActivity.this, "onDismiss", Toast.LENGTH_SHORT).show();
}
})
.buttonCallback(new MaterialDialog.ButtonCallback() {
@Override
public void onPositive(MaterialDialog dialog) {
super.onPositive(dialog);
Toast.makeText(MainActivity.this, "OK", Toast.LENGTH_SHORT).show();
}
@Override
public void onNeutral(MaterialDialog dialog) {
super.onNeutral(dialog);
Toast.makeText(MainActivity.this, "Not now", Toast.LENGTH_SHORT).show();
}
@Override
public void onNegative(MaterialDialog dialog) {
super.onNegative(dialog);
Toast.makeText(MainActivity.this, "Cancel", Toast.LENGTH_SHORT).show();
}
})
.show();
-keep class com.pepperonas.materialdialog.** { *; }
-dontwarn com.pepperonas.materialdialog.**
Try the sample application. It's on Google Play :) https://play.google.com/store/apps/details?id=com.pepperonas.materialdialog.showcase
- Martin Pfeffer - https://celox.io - martin.pfeffer@celox.io
Copyright 2017 Martin Pfeffer
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.