Coder Social home page Coder Social logo

Comments (5)

EddyVerbruggen avatar EddyVerbruggen commented on May 26, 2024

Can you show the code which hides and shows the toast?

from toast-phonegap-plugin.

tosrn avatar tosrn commented on May 26, 2024

Sure, thanks for the fast answer!

(I'm also using this controller to play an audio file)

 $scope.play = function(src,message) {
        var media = new Media(src, function onSuccess() {
               // release the media resource once finished playing
               media.release();
            },
            function onError(e){
                console.log("error playing sound: " + JSON.stringify(e));
            });
         media.play();
         // TOAST
         window.plugins.toast.hide();
        $cordovaToast.show(message, 'long', 'bottom').then(function(success) {
            console.log("The toast was shown");
        }, function (error) {
            console.log("The toast was not shown due to " + error);
        });     
    };

from toast-phonegap-plugin.

EddyVerbruggen avatar EddyVerbruggen commented on May 26, 2024

I'm guessing you need to put that showLongBottom('txt') call in the successcallback of the hide function, since those Cordova functions are asynchronous:

..hide(function() {
  // ..show here
});

from toast-phonegap-plugin.

tosrn avatar tosrn commented on May 26, 2024

Sorry didn't managed to make it work.

Is that what you meant?

$cordovaToast.hide().then(function(success) {
          $cordovaToast.show(message, 'long', 'bottom');
        });

from toast-phonegap-plugin.

EddyVerbruggen avatar EddyVerbruggen commented on May 26, 2024

I don't think ngCordova supports the hide function, so try this (didn't test this code, just typed it here):

window.plugins.toast.hide(function() {
  // you're now in the succes callback handler of the 'hide' function
  $cordovaToast.show(message, 'long', 'bottom');
});

from toast-phonegap-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.