Android中在WebView中使用javascript

默认情况下,在WebView中是不能使用javascript的。可以通过书写下面的代码:

WebView myWebView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = myWebView.getSettings();
webSettings
.setJavaScriptEnabled(true);

然后就可以使用了。

绑定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 */
public void showToast(String toast) {
Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}

绑定javascript,定义的接口名称为Android。

WebView webView = (WebView) findViewById(R.id.webview);
webView
.addJavascriptInterface(new JavaScriptInterface(this), "Android");

然后在你的HTML代码中写:

<input type="button" value="Say hello" onClick="showAndroidToast('Hello Android!')" />

<script type="text/javascript">
function showAndroidToast(toast) {
Android.showToast(toast);
}
</script>

注意:绑定的javascript运行在另一个线程中,与创建它的线程不是同一个。

处理页面导航:

默认情况下,当你单击你的WebView页面的链接时,连接到URIs。你可以使用下面的方式连接到你自己的WebView。

WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.serWebViewClient
(new WebViewClient());

如何你想控制更多的点击连接的话,可以重写shouldOverrideUrlLoading()方法,创建自己的WebViewClient:

private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("www.example.com")) {
// This is my web site, so do not override; let my WebView load the page
return false;
}
// Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity
(intent);
return true;
}
}

通过下面的方式来访问历史页:

public boolean onKeyDown(int keyCode, KeyEvent event) {
// Check if the key event was the BACK key and if there's history
if ((keyCode == KeyEvent.KEYCODE_BACK) && myWebView.canGoBack() {
myWebView
.goBack();
return true;
}
// If it wasn't the BACK key or there's no web page history, bubble up to the default
// system behavior (probably exit the activity)
return super.onKeyDown(keyCode, event);
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值