how to call javascript function from android using phonegap plugin
问题 This is my index.html <!DOCTYPE HTML> <html> <head> <title>PhoneGap</title> <script type="text/javascript" charset="utf-8" src="cordova-1.7.0rc1.js"></script> <script type="text/javascript" charset="utf-8"> function call(){ console.log("ANDROID"); } </script> </head> <body > </body> </html> This is my receiver class package com.example.jsfrmjv; import org.apache.cordova.DroidGap; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import