Contrary to what I heard from the android-developers group, you can actually create a WebView inside an Android Service, and use it to run JavaScript. JavaScript is needed by NubiNews in processing the HTML data downloaded from the news web sites.
This means, finally, I can implement offline syncing inside a Service. It will probably take a month from this point ....
In my test, this code is added to a Service's onCreate function:
Object o = new Object() {
public void trace(String s) {
System.out.println("JavaScript: " + s);
}
};
public void onCreate() {
WebView webView = new WebView(this);
WebSettings webSettings = webView.getSettings();
webSettings.setSavePassword(false);
webSettings.setSaveFormData(false);
webSettings.setJavaScriptEnabled(true);
webSettings.setSupportZoom(false);
webView.addJavascriptInterface(o, "backdoor");
webView.loadData("<" + "script language="\">window.backdoor.trace('I AM HERE');<" + "/script>", "text/html", "utf-8");
and, I see this "proof of life" output from logcat:
I/System.out(10440): JavaScript: I AM HERE
Monday, December 28, 2009
Subscribe to:
Posts (Atom)