Is it possible to interact with a webview in android trough my native android code?

I develop can bus driver for android and I like to send my can bus data to a html 5 app in a webview without sending them over internet to a webservice. or is it possible to call funktions via the html 5 app in my native android app?

Do you know a good solution for that scenario?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Check out addJavascriptInterface.

link|improve this answer
that helps a lot. thank you! – johnny Dec 1 '11 at 12:19
feedback

Here is a good example how to call javascript running inside the WebView:

http://android-er.blogspot.com/2011/10/call-javascript-inside-webview-from.html

link|improve this answer
thank you :) this is really nice!! i'm really happy there is a way for that :) – johnny Dec 1 '11 at 12:16
feedback

Your Answer

 
or
required, but never shown

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