在Android开发中,经常需要加载显示网页,一般一个页面在打开后,在等待数据加载的过程中,都需要花一点时间,这个时候往往需要显示一个转动的进度条(ProgressBar),接下来封装了一个自定义控件和加载网页的公共Activity,方便使用。此文章已经同步到CSDN啦,欢迎访问我的博客
一般的做法是在layout.xml中添加ProgressBar,但我们不这样做,主要是为了减少layout嵌套。
按照惯例我们先来看看最终的效果图:
在调用的时候很简单,就只需要传递一个url(加载网页的url)和title(显示标题)就可以了,如下所示:
Intent intent = new Intent(MainActivity.this, MainWebViewActivity.class);
intent.putExtra("url", "http://blog.csdn.net/qq_20785431");
intent.putExtra("title", "我的博客");
startActivity(intent);
1.接下来主要还是看看重写的带加载条的webview
package com.per.loadingwebviewdome;
import android.content.Context;
import android.os.Environment;
import android.util.AttributeSet;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ProgressBar;
/**
* @author: xiaolijuan
* @description: 带加载条的webview
* @date: 2016-06-03
* @time: 23:34
*/
public class LoadingWebView extends WebView {
private ProgressBar mProgressBar;
/**
* 网页缓存目录
*/
private static final String cacheDirPath = Environment
.getExternalStorageDirectory() + "/LoadingWebViewDome/webCache/";
public LoadingWebView(Context context) {
super(context, null);
}
public LoadingWebView(Context context, AttributeSet attrs) {
super(context, attrs, 0);
}
public LoadingWebView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
initContext(context);
}
private void initContext(Context context) {
requestFocus();
setInitialScale(39);
getSettings().setJavaScriptCanOpenWindowsAutomatically(true);//支持通过Javascript打开新窗口
getSettings().setJavaScriptEnabled(true);//设置WebView属性,能够执行Javascript脚本
getSettings().setUseWideViewPort(true);//将图片调整到适合webview的大小
getSettings().setLoadWithOverviewMode(true);// 缩放至屏幕的大小
getSettings().setDomStorageEnabled(true);//设置是否启用了DOM Storage API
getSettings().setDatabaseEnabled(true);//开启database storage API功能
getSettings().setDatabasePath(cacheDirPath); //设置数据库缓存路径
getSettings().setAppCachePath(cacheDirPath);//设置Application Caches缓存目录
getSettings().setAppCacheEnabled(true);//开启Application Caches功能
}
/**
* 加载网页url
*
* @param url
*/
public void loadMessageUrl(String url) {
super.loadUrl(url);
setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) { // 重写此方法表明点击网页里面的链接不调用系统浏览器,而是在本WebView中显示
loadUrl(url);//加载需要显示的网页
return true;
}
});
}
/**
* 添加进度条
*/
public void addProgressBar() {
mProgressBar = new ProgressBar(getContext(), null,
android.R.attr.progressBarStyleHorizontal);
mProgressBar.setLayoutParams(new LayoutParams(
LayoutParams.MATCH_PARENT, 5, 0, 0));
mProgressBar.setProgressDrawable(getContext().getResources()
.getDrawable(R.drawable.bg_pb_web_loading));
addView(mProgressBar);//添加进度条至LoadingWebView中
setWebChromeClient(new WebChromeClient());//设置setWebChromeClient对象
}
public class WebChromeClient extends android.webkit.WebChromeClient {
@Override
public void onProgressChanged(WebView view, int newProgress) {
if (newProgress == 100) {
mProgressBar.setVisibility(GONE);
} else {
if (mProgressBar.getVisibility() == GONE)
mProgressBar.setVisibility(VISIBLE);
mProgressBar.setProgress(newProgress);
}
super.onProgressChanged(view, newProgress);
}
}
/**
* 回收webview
*/
public void destroyWebView() {
clearCache(true);
clearHistory();
}
}
我们重写了3个构造方法,默认的布局文件调用的是两个参数的构造方法,所以记得让所有的构造调用我们的三个参数的构造,我们在三个参数的构造中获得自定义View的属性。
然后在布局中声明我们的自定义View
2.下面就是通用的带进度条的WebView啦
package com.per.loadingwebviewdome;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
/**
* @author: xiaolijuan
* @description: 通用的带进度条的WebView
* @date: 2016-06-03
* @time: 23:32
*/
public class MainWebViewActivity extends Activity implements View.OnClickListener {
private ImageView mIvBack;
private TextView mTvTitle;
private LoadingWebView mLoadingWebView;
private String mTitle = "";
private String mUrl = "";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_webview);
initView();
initData();
}
private void initView() {
mIvBack = (ImageView) findViewById(R.id.iv_back);
mLoadingWebView = (LoadingWebView) findViewById(R.id.wv_loading);
mTvTitle = (TextView) findViewById(R.id.tv_title);
mLoadingWebView.addProgressBar();
mIvBack.setOnClickListener(this);
}
private void initData() {
mTitle = getIntent().getStringExtra("title");
mUrl = getIntent().getStringExtra("url");
mLoadingWebView.loadMessageUrl(mUrl);
mTvTitle.setText(mTitle);
}
@Override
public void onDestroy() {
super.onDestroy();
mLoadingWebView.destroyWebView();
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.iv_back:
if (mLoadingWebView.canGoBack())
mLoadingWebView.goBack();
else {
finish();
}
break;
}
}
/**
* 按返回键时, 不退出程序而是返回WebView的上一页面
*/
@Override
public void onBackPressed() {
if (mLoadingWebView.canGoBack())
mLoadingWebView.goBack();
else {
super.onBackPressed();
}
}
}
下载源码