Notifications for Android (like a Toast)
Current version: v1.9
This library uses android-iconify:1.0.9.
Into your build.gradle:
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.Pierry:SimpleToast:v1.7'
}
Ref. https://jitpack.io/#Pierry/SimpleToast/v1.7
The API is kept as simple as the Toast API:
Create a SimpleToast for any CharSequence with default icon:
SimpleToast.ok(Context, CharSequence);
SimpleToast.error(Context, CharSequence);
SimpleToast.info(Context, CharSequence);
SimpleToast.muted(Context, CharSequence);
SimpleToast.warning(Context, CharSequence);
Using Font Awesome:
SimpleToast.ok(Context, CharSequence, "{fa-home}");
SimpleToast.error(Context, CharSequence, "{fa-user}");
SimpleToast.info(Context, CharSequence, "{fa-check-square}");
SimpleToast.muted(Context, CharSequence, "{fa-github}");
SimpleToast.warning(Context, CharSequence, "{fa-exclamation-circle}");
Use this link for icons: http://fortawesome.github.io/Font-Awesome/icons/
Questions regarding SimpleToast can be asked on StackOverflow, using the simpletoast tag.
Joan Zapata creator of Android-Iconify
Dave Gandy creator of Font-Awesome
Pierry Borges - http://pierry.github.io - [email protected]