展会信息港展会大全

Android中在WebView中使用javascript
来源:互联网   发布日期:2015-10-02 21:39:39   浏览:2681次  

导读:默认情况下,在WebView中是不能使用javascript的。可以通过书写下面的代码:WebView myWebView = (WebView) findViewB...

默认情况下,在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);

}

摘自:燕龙安的专栏

赞助本站

人工智能实验室

相关热词: android开发 教程

AiLab云推荐
推荐内容
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港