Skip to content

emadhajjar/phonegap-Toast-Plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

PhoneGap Toast Plugin

  • Author: munnadroid
  • License: The MIT License
  • Tested on PhoneGap/Cordova 3.1.0

Installation Instruction If You Like :D

  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 </widget>

  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]);

Example

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

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

About

Phonegap Toast Plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 55.4%
  • Java 44.6%