Android 使用AgentWeb库轻量级H5混合开发(加载网页)
Posted mmsx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 使用AgentWeb库轻量级H5混合开发(加载网页)相关的知识,希望对你有一定的参考价值。
一个轻量级的库,加载html效果很好,而且功能很强大。那就是AgentWeb
GitHub地址:https://github.com/Justson/AgentWeb
GitHub上面介绍:
AgentWeb 是一个基于的 android WebView ,极度容易使用以及功能强大的库,提供了 Android WebView 一系列的问题解决方案 ,并且轻量和极度灵活,体验请下载的 agentweb.apk, 或者你也可以到 Google Play 里面下载 AgentWeb , 详细使用请参照上面的 Sample 。
引入:
api 'com.just.agentweb:agentweb:4.1.2' // (必选)
api 'com.just.agentweb:filechooser:4.1.2'// (可选)
api 'com.download.library:Downloader:4.1.2'// (可选)
我没有用下载功能,就只引用上面两个。
最基础的使用:
mAgentWeb = AgentWeb.with(this).setAgentWebParent(layout, new LinearLayout.LayoutParams(-1, -1))
.useDefaultIndicator().createAgentWeb().ready().go("https://www.jd.com");
销毁:
@Override
protected void onPause()
super.onPause();
if (mAgentWeb != null)
mAgentWeb.getWebLifeCycle().onDestroy();
@Override
protected void onResume()
super.onResume();
if (mAgentWeb != null)
mAgentWeb.getWebLifeCycle().onResume();
这是我用到最基础的用法,详细用法以及介绍参考https://github.com/Justson/AgentWeb
以上是关于Android 使用AgentWeb库轻量级H5混合开发(加载网页)的主要内容,如果未能解决你的问题,请参考以下文章
Android Agentweb三方 WebView 完成与 H5 的混合开发
android 7.0 浏览器 拦截适配 shouldOverrideUrlLoading
SUI Mobile - 阿里出品的小巧且精美的手机H5前端UI库