I want to pass received message from C2DM to WebView javaScript function. I think the code is below...

public class C2DMReceiver extends BroadcastReceiver {

  ....

  private void handleMessage(Context context, Intent intent)
  {        
     String msg = intent.getStringExtra("msg");

     this.ctx.sendJavascript("myJavascriptFunction(" + msg +")");

  }

}

But I don't know How exactly to pass it. Please.

link|improve this question

50% accept rate
feedback

1 Answer

Assuming that your ctx is an instance of com.phonegap.api.Plugin you should try

this.ctx.sendJavascript("javascript:myJavascriptFunction(" + msg +")");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.