溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android如何實(shí)現(xiàn)自定義帶進(jìn)度條WebView仿微信加載

發(fā)布時間:2021-06-28 14:01:51 來源:億速云 閱讀:129 作者:小新 欄目:移動開發(fā)

這篇文章主要介紹Android如何實(shí)現(xiàn)自定義帶進(jìn)度條WebView仿微信加載,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

本文結(jié)構(gòu):

1、自定義webView
2、在應(yīng)用中的使用
3、效果展示

一、自定義webView

1、首先定義一個類,繼承webView,并首先構(gòu)造方法

public class ProgressBarWebView extends WebView{}

自定義控件,先實(shí)現(xiàn)構(gòu)造方法,
第一中是程序內(nèi)部實(shí)例化采用,傳入context

public ProgressBarWebView(Context context) {
 super(context);
 }

第二種用于layout實(shí)例化,會把xml的參數(shù)通過AttributeSet帶入View內(nèi)

public ProgressBarWebView(Context context, AttributeSet attrs) {
 super(context, attrs);
 }

第三種主題的style信息,也從XML帶入

public ProgressBarWebView(Context context, AttributeSet attrs,
  int defStyleAttr) {
 super(context, attrs, defStyleAttr);
 }

而我們需要加載進(jìn)度條布局,所以我們需要在第二中構(gòu)造方法中進(jìn)行操作,如下:

//首選創(chuàng)建一個進(jìn)度條,我們這里創(chuàng)建的是一個橫向的進(jìn)度條
progressBar = new ProgressBar(context, null, android.R.attr.progressBarStyleHorizontal); 
//設(shè)置該進(jìn)度條的位置參數(shù)
progressBar.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, 10, 0, 0)); 
//我們想要設(shè)置該進(jìn)度條的背景樣式 
Drawable drawable = context.getResources().getDrawable(R.drawable.progress_bar_states);
//設(shè)置背景樣式 
progressBar.setProgressDrawable(drawable); 
//調(diào)用本身的addView(其實(shí)是調(diào)用ViewManager里的方法,看源碼)方法講進(jìn)度條添加到當(dāng)前布局視圖中
addView(progressBar); 
//正常想獲取或這進(jìn)行交互一般要實(shí)現(xiàn)一下兩個方法,Myweblient()可以限制不用手機(jī)本身的瀏覽器,MyChromeClient()可以獲得網(wǎng)頁加載的進(jìn)度,title等
setWebViewClient(new Myweblient()); 
setWebChromeClient(new MyChromeClient()); 
//是否可以縮放 
getSettings().setSupportZoom(true); 
getSettings().setBuiltInZoomControls(true);

2、重寫WebViewClient,設(shè)置再本身的webview打開,不調(diào)用系統(tǒng)的瀏覽器:

//需要自己設(shè)置要不會打開手機(jī)瀏覽器
 private class Myweblient extends WebViewClient{
 @Override
 public boolean shouldOverrideUrlLoading(WebView view, String url) {
  view.loadUrl(url);
  return true;
 }
 }

3、重寫WebChromeClient,獲取相應(yīng)進(jìn)度信息,并設(shè)置

private class MyChromeClient extends WebChromeClient{
 @Override 
 public void onProgressChanged(WebView view, int newProgress) { 
  if (newProgress == 100) { //當(dāng)網(wǎng)頁全部加載完畢時
  progressBar.setVisibility(GONE); 
  } else { 
  if (progressBar.getVisibility() == GONE) 
   progressBar.setVisibility(VISIBLE); 
  progressBar.setProgress(newProgress); 
  } 
  super.onProgressChanged(view, newProgress); 
 } 

 }

4、前文構(gòu)造器我們提到的進(jìn)度條背景R.drawable.progress_bar_states,需要再xml中定義;

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
 <!-- 進(jìn)度條背景 -->
 <item android:id="@android:id/background"> 
 <shape> 
  <corners android:radius="2dp" /> 

  <gradient 
  android:angle="270" 
  android:centerColor="#E3E3E3" 
  android:endColor="#E6E6E6" 
  android:startColor="#C8C8C8" /> 
 </shape> 
 </item> 
 <!-- 綠色的進(jìn)度值 -->
 <item android:id="@android:id/progress"> 
 <clip> 
  <shape> 
  <corners android:radius="2dp" /> 

  <gradient 
   android:centerColor="#4AEA2F" 
   android:endColor="#31CE15" 
   android:startColor="#5FEC46" /> 
  </shape> 
 </clip> 
 </item>

</layer-list>

二、在頁面中的使用

//布局中
<com.example.videodemo.ProgressBarWebView 
 android:id="@+id/ss"
 android:layout_width="match_parent"
 android:layout_height="match_parent"/>

Activity中使用

ProgressBarWebView webView=(ProgressBarWebView) findViewById(R.id.ss);
webView.loadUrl("http://www.baidu.com/");

三、最終效果

Android如何實(shí)現(xiàn)自定義帶進(jìn)度條WebView仿微信加載

Android如何實(shí)現(xiàn)自定義帶進(jìn)度條WebView仿微信加載

以上是“Android如何實(shí)現(xiàn)自定義帶進(jìn)度條WebView仿微信加載”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI