最近项目刚好有做到内部HTML页面跳转原生页面和html代码启动App页面的功能,做完之后觉得相关知识可以整理一下
先说下项目所用到的js交互
android调取JS的方法
WebView直接加载js的方法就好了
代码如下
WebView.loadUrl("javascript:function(arg)")
html调用Android原生方法
//重点实现代码
WebView.addJavascriptInterface(Object object,String name)
Objcet 对象是自己创建的对象,整体代码如下
public class AndroidJs{
@JavascriptInterface
public void test(){}
}
//webview code
WebView.addJavascriptInterface(new AndroidJs(),“AndroidJs” )
//html code
window.AndroidJs.test()
外部HTML启动APP页面
使用Scheme方案设置
在AndroidManifest.xml文件中对应的页面标签添加如下
<activity android:name="...">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="hostName"
android:path="path"
android:scheme="schemeName" />
</intent-filter>
</activity>
Html代码调用如下
<a href = "schemeName://hostName/path">
//需要带参数的和http链接的get请求一样
<a href = "schemeName://hostName/path?id=1&name=mark">
带参数的调用 在Activity中的获取方式
String action = getIntent().getAction();
if(!TextUtils.isEmpty(action)&&Intent.ACTION_VIEW.equal(action)){
Uri uri = getIntent().getData();
if(uri != null){
String id = uri.getQueryParameter("id");
String name = uri.getQueryParameter("name");
}
}
自定义WebView处理scheme格式链接
public void loadUrl(String url){
if(isSchemeUrl(url)){
Intent intent = new Intent();
intent.setData(Uri.parse(url));
startActivity(intent);
}
}
private boolean isSchemeUrl(String url) {
if (TextUtils.isEmpty(url))
return false;
String[] strs = url.split("://");
if (strs.length > 1) {
String host = strs[0];
if (host.equalsIgnoreCase("http") || host.equalsIgnoreCase("https"))
return false;
else
return true;
} else return false;
}
一上是本人在处理Android JS交互 和 html启动APP的一些心得,如有问题,请各位留言