软件编程
位置:首页>> 软件编程>> Android编程>> Android编程实现WebView添加进度条的方法

Android编程实现WebView添加进度条的方法

作者:zzcchunter  发布时间:2023-07-06 03:16:46 

标签:Android,WebView,进度条

本文实例讲述了Android编程实现WebView添加进度条的方法。分享给大家供大家参考,具体如下:

标准的XML界面


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ProgressBar
 android:id="@+id/pb"
 style="?android:attr/progressBarStyleHorizontal"
 android:layout_width="fill_parent"
 android:layout_height="8dip"
 android:indeterminateOnly="false"
 android:max="100"
 android:progressDrawable="@drawable/progress_bar_states" >
</ProgressBar>
<WebView
 android:id="@+id/webview"
 android:layout_width="match_parent"
 android:layout_height="match_parent" />
</LinearLayout>

上面声明了两个控件,一个是progressBar 一个是 webview,progressbar用来显示webview控件的加载进度的

值得注意的是我们重写的progressdrawable这个属性,把原来难看的加载条,稍稍美化了一些,下面就是xml代码:


<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
 <shape>
  <gradient
    android:startColor="#ff0000"
    android:centerColor="#ffa600"
    android:endColor="#ff5500"
  />
 </shape>
</item>
<item android:id="@android:id/secondaryProgress">
 <clip>
  <shape>
   <gradient
     android:startColor="#234"
     android:centerColor="#234"
     android:endColor="#a24"
   />
  </shape>
 </clip>
</item>
<item android:id="@android:id/progress">
 <clip>
  <shape>
   <gradient
    android:startColor="#33000001"
    android:centerColor="#40000000"
    android:endColor="#44000000"
   />
  </shape>
 </clip>
</item>
</layer-list>

下面是Activity的java代码:


ProgressBar pb;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.xxx);
pb = (ProgressBar) findViewById(R.id.pb);
pb.setMax(100);
WebView webView = (WebView) findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setSupportZoom(true);
webView.getSettings().setBuiltInZoomControls(true);
webView.setWebChromeClient(new WebViewClient() );
webView.loadUrl("http://www.x.com");
}
private class WebViewClient extends WebChromeClient {
@Override
public void onProgressChanged(WebView view, int newProgress) {
 pb.setProgress(newProgress);
 if(newProgress==100){
  pb.setVisibility(View.GONE);
 }
 super.onProgressChanged(view, newProgress);
}
}

关键地方是重写了一个webchromeclient中的onprogressChange方法,这样我们就能控制progress的进度啦,是不是很方便的,京东也是这么干的哦,快去试一试吧

希望本文所述对大家Android程序设计有所帮助。

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com