SimpleToast

Additional

Language
Java
Version
v1.9 (Feb 1, 2016)
Created
Oct 6, 2014
Updated
Jul 18, 2016 (Retired)
Owner
Pierry Borges (Pierry)
Contributors
Pierry Borges (Pierry)
Vanessa Jansen (jansenvanessa)
Muhammad Naderi (muhammad-naderi)
3
Activity
Badge
Generate
Download
Source code

SimpleToast

Notifications for Android (like a Toast)

Current version: v1.9

Example

Default icons

Font awesome

Gradle

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

Usage

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

Questions regarding SimpleToast can be asked on StackOverflow, using the simpletoast tag.

Credits

Joan Zapata creator of Android-Iconify

Dave Gandy creator of Font-Awesome

Developed By

Pierry Borges - http://pierry.github.io - pieerry@gmail.com

License

Apache Version 2.0