博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中Webview使用javascript调用事先定义好的Java函数
阅读量:6633 次
发布时间:2019-06-25

本文共 798 字,大约阅读时间需要 2 分钟。

 1. 首先定义好一个类,专们用于给javascript调用

public class JavaScriptInterface {    // share your news    public void share(String newsImageUrl, String newsTitle, String newsUrl) {        Intent intent = new Intent(ActivityHomeRang.this,                ActivityShare.class);        Bundle news = new Bundle();        news.putString("ImageUrl", newsImageUrl);        news.putString("Title", newsTitle);        news.putString("Url", newsUrl);        intent.putExtras(news);        startActivity(intent);    }}

 

2. 然后需要监听你的WebView, 给它加上对外的事件监听

WebView testView;...testView.addJavascriptInterface(new JavaScriptInterface(), "android");

 

3. 服务端网页的调用代码

function callAndroidShare() {    android.share('http://www.test.com', 'test title', 'http://www.test.com/news.aspx');}

 

转载于:https://www.cnblogs.com/davidgu/p/3950917.html

你可能感兴趣的文章
黑魔法NSURLProtocol 可拦截网络加载
查看>>
Integration Services创建ETL包
查看>>
IE浏览器开发中遇到的问题
查看>>
php实现按utf8编码对字符串进行分割
查看>>
Ftp的断点下载实现
查看>>
[转载] ubuntu Authentication failure
查看>>
Ring0 - 链表
查看>>
修改数组之----splice
查看>>
Linux中chkconfig使用介绍
查看>>
二进制方式快速安装MySQL数据库
查看>>
查询指定库中所有表
查看>>
Flash AS3 Loader的一些总结
查看>>
js的逻辑 OR 运算符- ||
查看>>
[SQL Server]一次执行资料夹内的.sql 指令码
查看>>
【计算机视觉】粒子滤波跟踪
查看>>
hadoop集群扩展
查看>>
操作系统诊断
查看>>
[Compose] 19. Leapfrogging types with Traversable
查看>>
Tomcat version 7.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 and 6 Web modules
查看>>
2015年度新增开源软件排名TOP100
查看>>