PhoneGap Toast plugin
for Android, iOS, WP8, Windows and BlackBerry by Eddy Verbruggen
If you like this plugin and want to say thanks please send a PR or donation. Both are equally appreciated!
For a quick demo app and easy code samples, check out the plugin page at the Verified Plugins Marketplace: http://plugins.telerik.com/plugin/toast |
0. Index
- Description
- Screenshots
- Installation
- Automatically (CLI / Plugman)
- Manually
- PhoneGap Build
- Usage
- Styling
- Credits
- Changelog
1. Description
This plugin allows you to show a native Toast (a little text popup) on iOS, Android and WP8. It's great for showing a non intrusive native notification which is guaranteed always in the viewport of the browser.
- You can choose where to show the Toast: at the top, center or bottom of the screen.
- You can choose two durations: short (approx. 2 seconds), or long (approx. 5 seconds), after which the Toast automatically disappears.
Example usages:
- "There were validation errors"
- "Account created successfully"
- "The record was deleted"
- "Login successful"
- "You are now logged out"
- "Connection failure, please try again later"
- "Created Order #00287
2. Screenshots
iOS
A few styling options
Android
Windows Phone 8
3. Installation
Automatically (CLI / Plugman)
Toast is compatible with Cordova Plugman, compatible with PhoneGap 3.0 CLI, here's how it works with the CLI (backup your project first!):
Using the Cordova CLI and the Cordova Plugin Registry
$ cordova plugin add cordova-plugin-x-toast
$ cordova prepare
Or using the phonegap CLI
$ phonegap local plugin add cordova-plugin-x-toast
Toast.js is brought in automatically. There is no need to change or add anything in your html.
Manually
You'd better use the CLI, but here goes:
1. Add the following xml to your config.xml
in the root directory of your www
folder:
<!-- for iOS -->
<!-- for Android -->
<!-- for WP8 -->
For iOS, you'll need to add the QuartzCore.framework
to your project (it's for automatically removing the Toast after a few seconds).
Click your project, Build Phases, Link Binary With Libraries, search for and add QuartzCore.framework
.
2. Grab a copy of Toast.js, add it to your project and reference it in index.html
:
3. Download the source files and copy them to your project.
iOS: Copy the two .h
and two .m
files to platforms/ios/<ProjectName>/Plugins
Android: Copy Toast.java
to platforms/android/src/nl/xservices/plugins
(create the folders)
WP8: Copy Toast.cs
to platforms/wp8/Plugins/nl.x-services.plugins.toast
(create the folders)
PhoneGap Build
Toast works with PhoneGap build too, but only with PhoneGap 3.0 and up.
Just add the following xml to your config.xml
to always use the latest version of this plugin:
Toast.js is brought in automatically. There is no need to change or add anything in your html.
4. Usage
Showing a Toast
You have two choices to make when showing a Toast: where to show it and for how long.
- show(message, duration, position)
- duration: 'short', 'long', '3000', 900 (the latter are milliseconds)
- position: 'top', 'center', 'bottom'
You can also use any of these convenience methods:
- showShortTop(message)
- showShortCenter(message)
- showShortBottom(message)
- showLongTop(message)
- showLongCenter(message)
- showLongBottom(message)
You can copy-paste these lines of code for a quick test:
Toast showShortTopToast showLongBottomToast show long center
Tweaking the vertical position
Since 2.1.0 you can add pixels to move the toast up or down.
Note that showWithOptions
can be used instead of the functions above, but it's not useful unless you want to pass addPixelsY
.
{ windowpluginstoast;}
Hiding a Toast
In case you want to hide a Toast manually, call this:
{ // this function takes an optional success callback, but you can do without just as well windowpluginstoast;}
When the toast gets hidden, your success callback will be called (in case you have defined one) with the event
property equals to hide
(more details about the callback in the next section).
windowpluginstoast;
Receiving a callback when a Toast is tapped
On iOS and Android the success handler of your show
function will be notified (again) when the toast was tapped.
So the first time the success handler fires is when the toast is shown, and in case the user taps the toast it will be called again. You can distinguish between those events of course:
windowpluginstoast;
The success callback is useful when your toast is binded to a notification id in your backend and you have to mark it as read
when the toast is done, or to update the notifications counter for iOS. The usage of this will be defined by your application logic. Use the result.data
object to support your specific logic.
Styling
Since version 2.4.0 you can pass an optional styling
object to the plugin.
The defaults make sure the Toast looks the same as when you would not pass in the styling
object at all.
Note that on WP this object is currently ignored.
windowpluginstoast;
Tip: if you need to pass different values for iOS and Android you can use fi. the device plugin
to determine the platform and pass opacity: isAndroid() ? 0.7 : 0.9
.
WP8 quirks
The WP8 implementation needs a little more work, but it's perfectly useable when you keep this in mind:
- You can't show two Toasts simultaneously.
- Wait until the first Toast is hidden before the second is shown, otherwise the second one will be hidden quickly.
- The positioning of the bottom-aligned Toast is not perfect, but keep it down to 1 or 2 lines of text and you're fine.
5. CREDITS
This plugin was enhanced for Plugman / PhoneGap Build by Eddy Verbruggen. The Android code was entirely created by me. For iOS most credits go to this excellent Toast for iOS project by Charles Scalesse.
6. CHANGELOG
- 2.6.0: Windows support!
- 2.5.2: Multi-line wrapping Toasts are now center aligned.
- 2.5.1: You can now specify the
textSize
used in the font for iOS and Android. - 2.5.0: By popular demand: Specify the duration of the Toast on iOS and Android. Pass in
short
(2000ms),long
(4000ms), or any nr of milliseconds:900
. - 2.4.2: You can now also set the Toast
opacity
for iOS. - 2.4.1: As an addition to 2.4.0, Sino added the option to change the text color!
- 2.4.0: You can now style the Toast with a number of properties. See
- 2.3.2: The click event introduced with 2.3.0 did not work with Android 5+.
- 2.3.0: The plugin will now report back to JS if Toasts were tapped by the user.
- 2.0.1: iOS messages are hidden when another one is shown. Thanks Richie Min!
- 2.0: WP8 support
- 1.0: initial version supporting Android and iOS