Hybrid App(混合模式移动应用)是指介于web-app、native-app这两者之间的app,兼具“Native App良好用户交互体验的优势”和“Web App跨平台开发的优势”。
hybrid开发其实就是在App开发过程中既使用到了web(H5)开发技术也使用到了native开发技术,通过这两种技术混合实现的App就是我们通常说的hybrid app,而通过这两种技术混合开发就是hybrid开发。
通过对比可以发现hybrid开发方式现对于native实现主要的优势就是更新版本快,代码维护方便,当然了这两个优点也是我们推崇使用hybrid开发app的主要因素。
有两种方案:
WebView是一个基于webkit引擎、展现web页面的控件。
Android的Webview在低版本和高版本采用了不同的webkit版本内核,4.4后直接使用了Chrome。
前提:添加网络权限
<uses-permission android:name="android.permission.INTERNET"/>
WebView webView = new WebView(this)
WebView webview = (WebView) findViewById(R.id.webView1);
//声明WebSettings子类
WebSettings webSettings = webView.getSettings();
//如果访问的页面中要与Javascript交互,则webview必须设置支持Javascript
webSettings.setJavaScriptEnabled(true);
//支持插件
webSettings.setPluginsEnabled(true);
//设置自适应屏幕,两者合用
webSettings.setUseWideViewPort(true); //将图片调整到适合webview的大小
webSettings.setLoadWithOverviewMode(true); // 缩放至屏幕的大小
//缩放操作
webSettings.setSupportZoom(true); //支持缩放,默认为true。是下面那个的前提。
webSettings.setBuiltInZoomControls(true); //设置内置的缩放控件。若为false,则该WebView不可缩放
webSettings.setDisplayZoomControls(false); //隐藏原生的缩放控件
//其他细节操作
webSettings.setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); //关闭webview中缓存
webSettings.setAllowFileAccess(true); //设置可以访问文件
webSettings.setJavaScriptCanOpenWindowsAutomatically(true); //支持通过JS打开新窗口
webSettings.setLoadsImagesAutomatically(true); //支持自动加载图片
webSettings.setDefaultTextEncodingName("utf-8");//设置编码格式
常用:设置WebView缓存
当加载 html 页面时,WebView会在/data/data/包名目录下生成 database 与 cache 两个文件夹
请求的 URL记录保存在 WebViewCache.db,而 URL的内容是保存在 WebViewCache 文件夹下
//优先使用缓存:
WebView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
//缓存模式如下:
//LOAD_CACHE_ONLY: 不使用网络,只读取本地缓存数据
//LOAD_DEFAULT: (默认)根据cache-control决定是否从网络上取数据。
//LOAD_NO_CACHE: 不使用缓存,只从网络获取数据.
//LOAD_CACHE_ELSE_NETWORK,只要本地有,无论是否过期,或者no-cache,都使用缓存中的数据。
//不使用缓存:
WebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
// 结合使用(离线加载)
if (NetStatusUtil.isConnected(getApplicationContext())) {
webSettings.setCacheMode(WebSettings.LOAD_DEFAULT);//根据cache-control决定是否从网络上取数据。
} else {
webSettings.setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);//没网,则从本地获取,即离线加载
}
Webview webview = (WebView) findViewById(R.id.webView1);
webView.loadUrl("http://www.google.com/"); // 加载一个网页
webView.loadUrl("file:///android_asset/test.html"); // 加载apk包中的html页面
webView.loadUrl("content://com.android.htmlfileprovider/sdcard/test.html"); // 加载手机本地的html页面
webView.setWebViewClient(new WebViewClient(){
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
// shouldOverrideUrlLoading()方法,使得打开网页时不调用系统浏览器, 而是在本WebView中显示,在网页上的所有加载都经过这个方法
return true;
}
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
// 开始加载页面调用的,我们可以设定一个loading的页面,告诉用户程序在等待网络响应。
}
@Override
public void onPageFinished(WebView view, String url) {
// 在页面加载结束时调用。我们可以关闭loading 条,切换程序动作。
}
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl){
switch(errorCode){
// App里面使用webview控件的时候遇到了诸如404这类的错误的时候,若也显示浏览器里面的那种错误提示页面就显得很丑陋了
// 那么这个时候我们的app就需要加载一个本地的错误提示页面
// 步骤1:写一个html文件(error_handle.html),用于出错时展示给用户看的提示页面
// 步骤2:将该html文件放置到代码根目录的assets文件夹下
// 步骤3:复写WebViewClient的onRecievedError方法
case HttpStatus.SC_NOT_FOUND:
//该方法传回了错误码,根据错误类型可以进行不同的错误分类处理
view.loadUrl("file:///android_assets/error_handle.html");
break;
}
}
});
webview.setWebChromeClient(new WebChromeClient(){
@Override
public void onProgressChanged(WebView view, int newProgress) {
// 获得网页的加载进度并显示
if (newProgress < 100) {
String progress = newProgress + "%";
progress.setText(progress);
} else {}
}
@Override
public void onReceivedTitle(WebView view, String title) {
// 获取Web页中的标题
titleview.setText(title);
}
});
(1)需求
实现显示“www.baidu.com”、获取其标题、提示加载开始 & 结束和获取加载进度
(2)实现
步骤1:添加访问网络权限
AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET"/>
步骤2:主布局
activity_main.xml
<RelativeLayout>
<TextView android:id="@+id/title"/>
<TextView android:id="@+id/text_beginLoading"/>
<TextView android:id="@+id/text_Loading"/>
<TextView android:id="@+id/text_endLoading"/>
<WebView android:id="@+id/webView1"/>
RelativeLayout>
步骤3:实现显示“www.baidu.com”、获取其标题、提示加载开始 & 结束和获取加载进度
public class MainActivity extends AppCompatActivity {
WebView mWebview;
WebSettings mWebSettings;
TextView beginLoading,endLoading,loading,mtitle;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mWebview = (WebView) findViewById(R.id.webView1);
beginLoading = (TextView) findViewById(R.id.text_beginLoading);
endLoading = (TextView) findViewById(R.id.text_endLoading);
loading = (TextView) findViewById(R.id.text_Loading);
mtitle = (TextView) findViewById(R.id.title);
// webSettings 对WebView进行配置和管理
mWebSettings = mWebview.getSettings();
mWebview.loadUrl("http://www.baidu.com/");
// WebViewClient 处理各种通知 & 请求事件
//设置不用系统浏览器打开,直接显示在当前Webview
mWebview.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
});
//设置WebChromeClient类
mWebview.setWebChromeClient(new WebChromeClient() {
//获取网站标题
@Override
public void onReceivedTitle(WebView view, String title) {
System.out.println("标题在这里");
mtitle.setText(title);
}
//获取加载进度
@Override
public void onProgressChanged(WebView view, int newProgress) {
if (newProgress < 100) {
String progress = newProgress + "%";
loading.setText(progress);
} else if (newProgress == 100) {
String progress = newProgress + "%";
loading.setText(progress);
}
}
});
//设置WebViewClient类
mWebview.setWebViewClient(new WebViewClient() {
//设置加载前的函数
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
System.out.println("开始加载了");
beginLoading.setText("开始加载了");
}
//设置结束加载函数
@Override
public void onPageFinished(WebView view, String url) {
endLoading.setText("结束加载了");
}
});
}
// 点击返回上一页面而不是退出浏览器
// 在不做任何处理前提下 ,浏览网页时点击系统的“Back”键,整个 Browser 会调用 finish()而结束自身
// 解决:在当前Activity中处理并消费掉该 Back 事件
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && mWebview.canGoBack()) {
mWebview.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
//销毁Webview
@Override
protected void onDestroy() {
if (mWebview != null) {
mWebview.loadDataWithBaseURL(null, "", "text/html", "utf-8", null);
// mWebview.clearCache 清除网页访问留下的缓存(针对整个应用程序)
mWebview.clearHistory(); // 清除当前webview访问的历史记录(针对当前访问记录)
// 先从父容器中移除webview,然后再销毁webview ->> 防止内存泄露
((ViewGroup) mWebview.getParent()).removeView(mWebview);
mWebview.destroy();
mWebview = null;
}
super.onDestroy();
}
}
<html>
<head>
<meta charset="utf-8">
<title>js_testtitle>
<script>
// Android调用JS的方法
function callJS(message){
alert("Android调用了JS的callJS方法:参数为" + message);
}
script>
head>
<body>body>
html>
public class HybirdTestctivity extends AppCompatActivity {
final String url = "file:///android_asset/js_test.html";
WebView mWebView;
Button btn1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_hybird_testctivity);
mWebView = (WebView) findViewById(R.id.webView1);
btn1 = (Button) findViewById(R.id.btn1_hybird);
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true); // 设置与Js交互的权限
webSettings.setJavaScriptCanOpenWindowsAutomatically(true); // 设置允许JS弹窗
// 先载入JS代码
// 格式规定为:file:///android_asset/文件名.html
mWebView.loadUrl(url);
// 由于设置了弹窗检验调用结果,所以需要支持js对话框
// webview只是载体,内容的渲染需要使用webviewChromClient类去实现
// 通过设置WebChromeClient对象处理JavaScript的对话框
mWebView.setWebChromeClient(new WebChromeClient() {
@Override
public boolean onJsAlert(WebView view, String url, String message, final JsResult result) {
// 通过 WebChromeClient 的onJsAlert()、onJsConfirm()、onJsPrompt()方法回调拦截JS对话框alert()、confirm()、prompt() 消息
// 设置响应js 的Alert()函数
AlertDialog.Builder b = new AlertDialog.Builder(HybirdTestctivity.this);
b.setTitle("Alert");
b.setMessage(message);
b.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
result.confirm();
}
});
b.setCancelable(false);
b.create().show();
return true;
}
});
}
public void onClick(View view){
switch (view.getId()){
case R.id.btn1_hybird:
// Android通过WebView调用 JS 代码——通过webView.loadUrl
mWebView.post(new Runnable() {
@Override
public void run() {
// 注意调用的JS方法名要对应上
String msg = "Message From Android";
mWebView.loadUrl("javascript:callJS('"+msg+"')");
}});
break;
}
}
}
// 创建注入的Java类
public class NativeInterface{
private Context mContext;
public NativeInterface(Context context){
mContext = context;
}
// 定义JS需要调用的方法
// 被JS调用的方法必须加入@JavascriptInterface注解
@JavascriptInterface
public void hello(String msg) {
Log.i("AndroidNative", "hello: "+ msg);
}
@JavascriptInterface
public String getDataFromAndroid() {
Log.i("AndroidNative", "getDataFromAndroid: "+"JS调用了Android的getDataFromAndroid方法");
return "Android Data";
}
}
// 设置与Js交互的权限
webSettings.setJavaScriptEnabled(true);
// JSBridge实现JS调用Android:通过addJavascriptInterface()将Java对象注入到JS对象
// NativeInterface类对象注入到js的AndroidNative对象
mWebView.addJavascriptInterface(new NativeInterface(this), "AndroidNative");
<html>
<head>
<meta charset="utf-8">
<title>js_testtitle>
<script>
// JS调用Android方法
function hello_android(){
// 由于对象映射,所以调用AndroidNative对象等于调用Android映射的对象
AndroidNative.hello("js调用了android中的hello方法");
}
function getDataFromAndroid_android(){
// 由于对象映射,所以调用AndroidNative对象等于调用Android映射的对象
alert(AndroidNative.getDataFromAndroid());
}
script>
head>
<body>
<button type="button" id="button1" onclick="javascript:hello_android();">点击按钮则调用hello_android函数button>
<button type="button" id="button2" onclick="javascript:getDataFromAndroid_android();">点击按钮则调用getDataFromAndroid_android函数button>
body>
html>
<html>
<head>
<meta charset="utf-8">
<title>Carson_Hotitle>
<script>
function callAndroid(){
/*约定的url协议为:js://webview?arg1=111&arg2=222*/
document.location = "js://webview?arg1=111&arg2=222";
}
script>
head>
<body>
<button type="button" id="button1" "callAndroid()">点击调用Android代码button>
body>
html>
(2)在Android通过WebViewClient复写shouldOverrideUrlLoading ()
// 复写WebViewClient类的shouldOverrideUrlLoading方法
mWebView.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
// 步骤2:根据协议的参数,判断是否是所需要的url
// 一般根据scheme(协议格式) & authority(协议名)判断(前两个参数)
//假定传入进来的 url = "js://webview?arg1=111&arg2=222"(同时也是约定好的需要拦截的)
Uri uri = Uri.parse(url);
// 如果url的协议 = 预先约定的 js 协议
// 就解析往下解析参数
if ( uri.getScheme().equals("js")) {
// 如果 authority = 预先约定协议里的 webview,即代表都符合约定的协议
// 所以拦截url,下面JS开始调用Android需要的方法
if (uri.getAuthority().equals("webview")) {
// 步骤3:
// 执行JS所需要调用的逻辑
System.out.println("js调用了Android的方法");
// 可以在协议上带有参数并传递到Android上
HashMap<String, String> params = new HashMap<>();
Set<String> collection = uri.getQueryParameterNames();
}
return true;
}
return super.shouldOverrideUrlLoading(view, url);
}
});
<html>
<head>
<meta charset="utf-8">
<title>Carson_Hotitle>
<script>
function clickprompt(){
// 调用prompt()
var result=prompt("js://demo?arg1=111&arg2=222");
alert("demo " + result);
}
script>
head>
<body>
<button type="button" id="button1" "clickprompt()">点击调用Android代码button>
body>
html>
(2)在Android通过WebChromeClient复写onJsPrompt()
mWebView.setWebChromeClient(new WebChromeClient() {
// 拦截输入框(原理同方式2)
// 参数message:代表promt()的内容(不是url)
// 参数result:代表输入框的返回值
@Override
public boolean onJsPrompt(WebView view, String url, String message, String defaultValue, JsPromptResult result) {
// 根据协议的参数,判断是否是所需要的url(原理同方式2)
// 一般根据scheme(协议格式) & authority(协议名)判断(前两个参数)
//假定传入进来的 url = "js://webview?arg1=111&arg2=222"(同时也是约定好的需要拦截的)
Uri uri = Uri.parse(message);
// 如果url的协议 = 预先约定的 js 协议
// 就解析往下解析参数
if ( uri.getScheme().equals("js")) {
// 如果 authority = 预先约定协议里的 webview,即代表都符合约定的协议
// 所以拦截url,下面JS开始调用Android需要的方法
if (uri.getAuthority().equals("webview")) {
//
// 执行JS所需要调用的逻辑
System.out.println("js调用了Android的方法");
// 可以在协议上带有参数并传递到Android上
HashMap<String, String> params = new HashMap<>();
Set<String> collection = uri.getQueryParameterNames();
//参数result:代表消息框的返回值(输入值)
result.confirm("js调用了Android的方法成功啦");
}
return true;
}
return super.onJsPrompt(view, url, message, defaultValue, result);
}
// 通过alert()和confirm()拦截的原理相同,此处不作过多讲述
// 拦截JS的警告框
@Override
public boolean onJsAlert(WebView view, String url, String message, JsResult result) {
return super.onJsAlert(view, url, message, result);
}
// 拦截JS的确认框
@Override
public boolean onJsConfirm(WebView view, String url, String message, JsResult result) {
return super.onJsConfirm(view, url, message, result);
}
});
不再使用WebView对象后不销毁,导致占用的内存长期无法回收,从而造成内存泄露。
WebView关联Activity的时候会自动创建线程,绑定了Activity Context。而Activity无法确定这个线程的销毁时间,这个线程的生命周期和我们Activity生命周期是不一样的,这就导致了Activity销毁时,WebView还持有Activity的引用,从而出现内存泄漏问题。
WebView与Activity Context绑定。销毁WebView的时候,需要释放Activity的Context,否则会内存泄露。
@Override
protected void onDestroy() {
if (mWebView != null) {
mWebView.loadDataWithBaseURL(null, "", "text/html", "utf-8", null);
mWebView.clearHistory();
// 在关闭了Activity时,如果Webview的音乐或视频,还在播放。就必须销毁Webview
// 但是注意:webview调用destory时,webview仍绑定在Activity上
//这是由于自定义webview构建时传入了该Activity的context对象,因此需要先从父容器中移除webview,然后再销毁webview:
((ViewGroup) mWebView.getParent()).removeView(mWebView);
mWebView.destroy();
mWebView = null;
}
super.onDestroy();
}
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
mWebView = new WebView(getApplicationContext());
mWebView.setLayoutParams(params);
mLayout.addView(mWebView);
WebView 性能问题
上述问题导致了Android WebView的H5 页面体验 与 原生Native 存在较大差距。
包括 WebView对象 & H5资源 预加载
// 假设现在需要拦截一个图片的资源并用本地资源进行替代
mWebview.setWebViewClient(new WebViewClient() {
// 重写 WebViewClient 的 shouldInterceptRequest ()
// API 21 以下用shouldInterceptRequest(WebView view, String url)
// API 21 以上用shouldInterceptRequest(WebView view, WebResourceRequest request)
// 下面会详细说明
// API 21 以下用shouldInterceptRequest(WebView view, String url)
@Override
public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
// 步骤1:判断拦截资源的条件,即判断url里的图片资源的文件名
if (url.contains("logo.gif")) {
// 假设网页里该图片资源的地址为:http://abc.com/imgage/logo.gif
// 图片的资源文件名为:logo.gif
InputStream is = null;
// 步骤2:创建一个输入流
try {
is =getApplicationContext().getAssets().open("images/abc.png");
// 步骤3:获得需要替换的资源(存放在assets文件夹里)
// a. 先在app/src/main下创建一个assets文件夹
// b. 在assets文件夹里再创建一个images文件夹
// c. 在images文件夹放上需要替换的资源(此处替换的是abc.png图片)
} catch (IOException e) {
e.printStackTrace();
}
// 步骤4:替换资源
WebResourceResponse response = new WebResourceResponse("image/png",
"utf-8", is);
// 参数1:http请求里该图片的Content-Type,此处图片为image/png
// 参数2:编码类型
// 参数3:存放着替换资源的输入流(上面创建的那个)
return response;
}
return super.shouldInterceptRequest(view, url);
}
// API 21 以上用shouldInterceptRequest(WebView view, WebResourceRequest request)
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@Override
public WebResourceResponse shouldInterceptRequest(WebView view, WebResourceRequest request) {
// 步骤1:判断拦截资源的条件,即判断url里的图片资源的文件名
if (request.getUrl().toString().contains("logo.gif")) {
// 假设网页里该图片资源的地址为:http://abc.com/imgage/logo.gif
// 图片的资源文件名为:logo.gif
InputStream is = null;
// 步骤2:创建一个输入流
try {
is = getApplicationContext().getAssets().open("images/abc.png");
// 步骤3:获得需要替换的资源(存放在assets文件夹里)
// a. 先在app/src/main下创建一个assets文件夹
// b. 在assets文件夹里再创建一个images文件夹
// c. 在images文件夹放上需要替换的资源(此处替换的是abc.png图片
} catch (IOException e) {
e.printStackTrace();
}
// 步骤4:替换网络返回资源
WebResourceResponse response = new WebResourceResponse("image/png",
"utf-8", is);
// 参数1:http请求里该图片的Content-Type,此处图片为image/png
// 参数2:编码类型
// 参数3:存放着替换资源的输入流(上面创建的那个)
return response;
}
return super.shouldInterceptRequest(view, request);
}
});
}
腾讯祭出大招VasSonic,让你的H5页面首屏秒开
优化方案: