Skip to content

giver/cordova-android-toast-plugin

 
 

Repository files navigation

PhoneGap Toast Plugin

  • Author: Bastien Diederichs (Original : munnadroid, giver)
  • License: The MIT License
  • Tested on PhoneGap/Cordova 3.1.0

Installation Instruction

  1. Copy \plugins\org.apache.cordova.plugin\www\toast.js to *\assets\www* folder

  2. Copy ToastPlugin.java to your src folder in package org.apache.cordova.plugin or add all \org\apache\cordova\plugin\ToastPlugin.java if you don't already have the folders created.

  3. Edit res\xml\config.xml (or wherever your config.xml is), add

<feature name="ToastPlugin">
    <param name="android-package" value="org.apache.cordova.plugin.ToastPlugin" />
</feature>

at the end of the file, before ```

  1. Edit assets\www\cordova_plugins.js, add
{
    "file": "plugins/org.apache.cordova.plugin/www/toast.js",
    "id": "org.apache.cordova.plugin.ToastPlugin",
    "runs": true
}

as an element of the array module.exports

How To Use

  1. Use Toast.longshow
Toast.longshow(Message [,SuccessCallback, FailureCallback]);
  1. Use Toast.shortshow
Toast.shortshow(Message [,SuccessCallback, FailureCallback]);

Contributors

Original work by @munnadroid. Forked from @giver.

Example

Toast.longshow("Hello, I am long Toast");
Toast.shortshow("Hello, I am short Toast");

About

Cordova (Phonegap) Android Toast Plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 56.0%
  • Java 44.0%