When you have a WebView you can set a Webchormeclient or a Webviewclient, the webchromeclient will be similar to your chrome desktop browser. The other option is to use a Webviewclient this webview client can be configurated as you wish, you can add an "interface" to call Javascript functions from your java code, or java functions from your Javascript code.
The interface is a class and can be something like this:
final class JavaScriptInterface {
public void myalert(String message){
new AlertDialog.Builder(wview.getContext()).setMessage(message).setNeutralButton("Ok",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
}).show();
}
The webview has a method to "attach" this class to the Javascript:
wview.addJavascriptInterface(new JavaScriptInterface(), "interface);
Once you have add the JavascriptInterface, you can call the method myalert("hi") from the Javascript code, to do so, you will have to do something like:
window.interface.myalert("hi") //This is called in the Javascript
if you want to call a Javascript from the Java code you can do something like this:
wview.loadUrl("javascript:changeValues('"+name+"','"+id+"')");//this will call a Javascript function called changeValues, and will pass to variables (name, id)
To sum up, the webchromeclient is easier to use but the webviewclient allows you more configuration. Before, maybe you want to read about phonegap which is a framework to devlop Webapps x-platform.
Hope you that this fast explanation helps you a little.
PS: With the second option you can store all that you need in the sdcard.