首先,您的網址似乎不可用。
如果你想在android應用程序和你的web應用程序/網頁之間進行數據交換,你可以通過javascript來實現。
下面是Android的官方網站的例子:
像這樣創建一個類:
public class JavaScriptInterface {
Context mContext;
/** Instantiate the interface and set the context */
JavaScriptInterface(Context c) {
mContext = c;
}
/** Show a toast from the web page */
@JavascriptInterface
public void showToast(String toast) {
Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}
在你WebView
:
WebView webView = (WebView) findViewById(R.id.webview);
webView.addJavascriptInterface(new JavaScriptInterface(this), "Android");
在你的網頁:
<input type="button" value="Say hello" onClick="showAndroidToast('Hello Android!')" />
<script type="text/javascript">
function showAndroidToast(toast) {
Android.showToast(toast);
}
</script>
如果你想傳遞的東西到您的網頁,只調用相應的JavaScript函數:
String str = "xxx";
myWebView.loadUrl("javascript:xxx('"+str+"')");
這裏是參考: http://developer.android.com/guide/webapps/webview.html
這是什麼意思,這myWebView.loadUrl(「javascript:xxx('xxx')」);我也使用加載URL來加載我的HTML,所以可以多次使用加載URL? – User 2012-08-01 04:52:12
是的,只要您的網頁中存在javascript功能 – hungr 2012-08-01 05:12:27
我明白這就是爲什麼我會加載JavaScript,因爲它有代碼傳遞一些數據。 – User 2012-08-01 05:20:25