Bodge-it Wiki
Advertisement

here is an interesting example, if it were possibe to run the WebView content into any browser;


http://stackoverflow.com/questions/7154669/send-events-from-python-to-javascript-using-sl4a


 var droid = new Android();

    droid.registerCallback("echo", function(msg) {
        alert(msg.data)
    });
droid.eventPost("echo", "hello world")
Advertisement