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

更多相关文章

  1. 没有一行代码,「2020 新冠肺炎记忆」这个项目却登上了 GitHub 中
  2. Android(安卓)学习笔记--android基本
  3. Ubuntu 下编译Android(安卓)源代码
  4. someone's android note
  5. Android(安卓)SystemServer学习之二
  6. Android判断两个时间的间隔
  7. Android(安卓)打开PDF,PPT,WORD,EXCEL,CHM,HTML,TEXT,AUDIO,VIDE
  8. 【翻译】Android中的AOP编程
  9. android图片资源转换

随机推荐

  1. 史上最全maven教程
  2. springboot整合 elasticsearch 做 增删改
  3. J2EE Listener 监听器教程
  4. springboot仿天猫实战项目
  5. 初级程序员必须会的项目
  6. SpringBoot持久层支持 - Mybatis-xml方式
  7. 【干货】让你薪资翻10倍的网站 大学生与
  8. 2020最全的Lucene7 入门教程
  9. SpringBoot持久层支持 - Springboot中如
  10. 初学Redis最清晰完整的教程