Toast-PhoneGap-Plugin/README.md

283 lines
11 KiB
Markdown
Raw Normal View History

2014-01-25 23:56:34 +08:00
# PhoneGap Toast plugin
2014-01-25 17:30:25 +08:00
2014-04-18 02:41:02 +08:00
for Android, iOS and WP8, by [Eddy Verbruggen](http://www.x-services.nl/phonegap-toast-plugin/796)
2014-01-25 23:47:02 +08:00
<table width="100%">
<tr>
<td width="100"><a href="http://plugins.telerik.com/plugin/toast"><img src="http://www.x-services.nl/github-images/telerik-verified-plugins-marketplace.png" width="97px" height="71px" alt="Marketplace logo"/></a></td>
<td>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</td>
</tr>
</table>
2014-01-25 23:47:02 +08:00
## 0. Index
1. [Description](#1-description)
2. [Screenshots](#2-screenshots)
3. [Installation](#3-installation)
3. [Automatically (CLI / Plugman)](#automatically-cli--plugman)
3. [Manually](#manually)
3. [PhoneGap Build](#phonegap-build)
4. [Usage](#4-usage)
2016-01-28 03:49:03 +08:00
4. [Styling](#styling)
2014-01-25 23:47:02 +08:00
5. [Credits](#5-credits)
2014-04-18 02:41:02 +08:00
6. [Changelog](#6-changelog)
7. [License](#7-license)
2014-01-25 23:47:02 +08:00
## 1. Description
2014-04-18 02:41:02 +08:00
This plugin allows you to show a native Toast (a little text popup) on iOS, Android and WP8.
2014-01-25 23:47:02 +08:00
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.
2014-01-26 00:17:46 +08:00
* You can choose two durations: short (approx. 2 seconds), or long (approx. 5 seconds), after which the Toast automatically disappears.
2014-01-25 23:47:02 +08:00
* Compatible with [Cordova Plugman](https://github.com/apache/cordova-plugman).
2014-01-28 14:12:37 +08:00
* Officially supported by [PhoneGap Build](https://build.phonegap.com/plugins).
2014-05-12 15:51:13 +08:00
* Minimum iOS version is [6](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/issues/7).
2014-01-25 23:47:02 +08:00
2014-01-26 00:17:46 +08:00
Example usages:
2014-01-26 00:18:21 +08:00
* "There were validation errors"
* "Account created successfully"
* "The record was deleted"
* "Login successful"
* "The battery is almost dead"
* "You are now logged out"
* "Connection failure, please try again later"
2014-01-26 00:17:46 +08:00
2014-01-25 23:47:02 +08:00
## 2. Screenshots
2014-01-25 23:56:34 +08:00
iOS
2014-01-25 23:47:02 +08:00
2014-04-18 03:23:44 +08:00
![ScreenShot](screenshots/screenshot-ios-toast.png)
2014-01-25 23:47:02 +08:00
2016-01-28 03:49:03 +08:00
A few styling options
![ScreenShot](screenshots/styling-green.png)
![ScreenShot](screenshots/styling-red.png)
2014-01-25 23:47:02 +08:00
Android
2014-04-18 03:23:44 +08:00
![ScreenShot](screenshots/screenshot-android-toast.png)
2014-01-25 23:47:02 +08:00
2016-01-28 03:49:03 +08:00
2014-04-18 03:23:44 +08:00
Windows Phone 8
![ScreenShot](screenshots/screenshot-wp8.jpg)
2014-04-18 02:41:02 +08:00
2014-01-25 23:47:02 +08:00
## 3. Installation
### Automatically (CLI / Plugman)
2014-01-26 04:05:20 +08:00
Toast is compatible with [Cordova Plugman](https://github.com/apache/cordova-plugman), compatible with [PhoneGap 3.0 CLI](http://docs.phonegap.com/en/3.0.0/guide_cli_index.md.html#The%20Command-line%20Interface_add_features), here's how it works with the CLI (backup your project first!):
2014-01-25 23:47:02 +08:00
Using the Cordova CLI and the [Cordova Plugin Registry](http://plugins.cordova.io)
2014-01-25 23:47:02 +08:00
```
2015-08-27 22:34:49 +08:00
$ cordova plugin add cordova-plugin-x-toast
$ cordova prepare
2014-01-25 23:47:02 +08:00
```
Or using the phonegap CLI
2014-01-25 23:47:02 +08:00
```
2015-08-27 22:34:49 +08:00
$ phonegap local plugin add cordova-plugin-x-toast
2014-01-25 23:47:02 +08:00
```
Toast.js is brought in automatically. There is no need to change or add anything in your html.
### Manually
2015-08-27 22:34:49 +08:00
You'd better use the CLI, but here goes:
2014-01-25 23:47:02 +08:00
1\. Add the following xml to your `config.xml` in the root directory of your `www` folder:
```xml
<!-- for iOS -->
<feature name="Toast">
<param name="ios-package" value="Toast" />
</feature>
```
```xml
<!-- for Android -->
<feature name="Toast">
<param name="android-package" value="nl.xservices.plugins.Toast" />
</feature>
```
2014-04-18 02:41:02 +08:00
```xml
<!-- for WP8 -->
<feature name="Toast">
<param name="wp-package" value="Toast"/>
</feature>
```
2014-01-25 23:47:02 +08:00
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`:
```html
<script type="text/javascript" src="js/Toast.js"></script>
```
2014-04-18 02:41:02 +08:00
3\. Download the source files and copy them to your project.
2014-01-25 23:47:02 +08:00
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)
2014-04-18 02:41:02 +08:00
WP8: Copy `Toast.cs` to `platforms/wp8/Plugins/nl.x-services.plugins.toast` (create the folders)
2014-01-28 14:12:37 +08:00
### PhoneGap Build
2014-01-25 23:47:02 +08:00
2014-01-28 14:12:37 +08:00
Toast works with PhoneGap build too, but only with PhoneGap 3.0 and up.
2014-01-25 23:47:02 +08:00
Just add the following xml to your `config.xml` to always use the latest version of this plugin:
```xml
2015-08-27 22:34:49 +08:00
<gap:plugin name="cordova-plugin-x-toast" source="npm" />
2014-01-25 23:47:02 +08:00
```
Toast.js is brought in automatically. There is no need to change or add anything in your html.
## 4. Usage
### Showing a Toast
2014-01-25 23:47:02 +08:00
You have two choices to make when showing a Toast: where to show it and for how long.
2014-01-25 23:56:34 +08:00
* show(message, duration, position)
2015-06-12 01:31:10 +08:00
* duration: 'short', 'long'
* position: 'top', 'center', 'bottom'
2014-01-25 23:47:02 +08:00
You can also use any of these convenience methods:
2014-01-25 23:56:34 +08:00
* showShortTop(message)
* showShortCenter(message)
* showShortBottom(message)
* showLongTop(message)
* showLongCenter(message)
* showLongBottom(message)
2014-01-25 23:47:02 +08:00
You can copy-paste these lines of code for a quick test:
```html
2014-01-26 00:06:40 +08:00
<button onclick="window.plugins.toast.showShortTop('Hello there!', function(a){console.log('toast success: ' + a)}, function(b){alert('toast error: ' + b)})">Toast showShortTop</button>
<button onclick="window.plugins.toast.showLongBottom('Hello there!', function(a){console.log('toast success: ' + a)}, function(b){alert('toast error: ' + b)})">Toast showLongBottom</button>
<button onclick="window.plugins.toast.show('Hello there!', 'long', 'center', function(a){console.log('toast success: ' + a)}, function(b){alert('toast error: ' + b)})">Toast show long center</button>
2014-01-25 23:47:02 +08:00
```
#### Tweaking the vertical position
2015-06-12 01:31:10 +08:00
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`.
```js
2015-12-08 17:18:20 +08:00
function showBottom() {
2015-06-12 01:31:10 +08:00
window.plugins.toast.showWithOptions(
{
message: "hey there",
duration: "short",
position: "bottom",
addPixelsY: -40 // added a negative value to move it up a bit (default 0)
},
onSuccess, // optional
onError // optional
);
}
```
### Hiding a Toast
In case you want to hide a Toast manually, call this:
```js
function hide() {
// this function takes an optional success callback, but you can do without just as well
window.plugins.toast.hide();
}
```
2015-12-08 17:18:20 +08:00
### 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:
```js
window.plugins.toast.showWithOptions(
{
message: "hey there",
duration: "short",
position: "bottom",
addPixelsY: -40, // (optional) added a negative value to move it up a bit (default 0)
data: {'foo','bar'} // (optional) pass in a JSON object here (it will be sent back in the success callback below)
2015-12-08 17:18:20 +08:00
},
// implement the success callback
function(result) {
if (result && result.event) {
console.log("The toast was tapped");
console.log("Event: " + result.event); // will be defined, with a value of "touch" when it was tapped by the user
console.log("Message: " + result.message); // will be equal to the message you passed in
console.log("data.foo: " + result.data.foo); // .. retrieve passed in data here
2015-12-08 17:18:20 +08:00
} else {
console.log("The toast has been shown");
}
}
);
```
2016-01-28 03:49:03 +08:00
### 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.
```js
window.plugins.toast.showWithOptions({
message: "hey there",
duration: "short",
position: "bottom",
styling: {
opacity: 0.75, // 0.0 (transparent) to 1.0 (opaque). Default 0.8
backgroundColor: '#FF0000', // make sure you use #RRGGBB. Default #333333
textColor: '#FFFF00', // Ditto. Default #FFFFFF
2016-01-28 03:49:03 +08:00
cornerRadius: 16, // minimum is 0 (square). iOS default 20, Android default 100
horizontalPadding: 20, // iOS default 16, Android default 50
verticalPadding: 16 // iOS default 12, Android default 30
}
});
```
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`.
2015-09-26 14:05:18 +08:00
### WP8 quirks
2014-04-18 03:27:48 +08:00
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.
2014-04-18 02:41:02 +08:00
## 5. CREDITS
2014-01-25 23:47:02 +08:00
This plugin was enhanced for Plugman / PhoneGap Build by [Eddy Verbruggen](http://www.x-services.nl).
The Android code was entirely created by me.
2014-01-25 23:59:31 +08:00
For iOS most credits go to this excellent [Toast for iOS project by Charles Scalesse] (https://github.com/scalessec/Toast).
2014-01-25 23:47:02 +08:00
2014-04-18 02:41:02 +08:00
## 6. CHANGELOG
- 2.4.1: As an addition to 2.4.0, [Sino](https://github.com/SinoBoeckmann) added the option to change the text color!
2016-01-28 03:49:03 +08:00
- 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!](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/pull/13)
- 2.0: WP8 support
- 1.0: initial version supporting Android and iOS
2014-04-18 02:41:02 +08:00
## 7. License
2014-01-25 23:47:02 +08:00
[The MIT License (MIT)](http://www.opensource.org/licenses/mit-license.html)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2014-01-26 00:08:47 +08:00
THE SOFTWARE.