안 드 로 이 드 는 위 챗 공식 번호 글 페이지 에 진도 바 를 불 러 옵 니 다.

선언:
위 챗 공식 번호 글 의 상세 한 페이지 를 불 러 올 때 WebView 는 머리 에 진도 항목 을 표시 합 니 다.이렇게 하면 사용자 가 웹 페이지 내용 을 불 러 오 는 동시에 웹 페이지 내용 도 조회 할 수 있 습 니 다.완전히 불 러 온 후에 야 모두 표시 할 필요 가 없습니다.어떻게 실현 합 니까?웹 뷰 를 사용자 정의 하면 간단 합 니 다.
상세 한 실현 절 차 는 다음 과 같다.
1.Progress WebView 를 사용자 정의 하여 Webview 계속 하기

@SuppressWarnings("deprecation")
public class ProgressWebView extends WebView {

 private ProgressBar progressbar;

 public ProgressWebView(Context context) {
 super(context);
 init(context);
 }

 private void init(Context context) {
 progressbar = new ProgressBar(context, null,
  android.R.attr.progressBarStyleHorizontal);
 progressbar.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,
  6, 0, 0));
 progressbar.setProgressDrawable(this.getResources().getDrawable(
  R.drawable.btn_progress_webview));
 addView(progressbar);
 setWebChromeClient(new WebChromeClient());
 }

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

 public class WebChromeClient extends android.webkit.WebChromeClient {
 @Override
 public void onProgressChanged(WebView view, int newProgress) {
  if (newProgress == 100) {
  progressbar.setVisibility(GONE);
  } else {
  if (progressbar.getVisibility() == GONE)
   progressbar.setVisibility(VISIBLE);
  progressbar.setProgress(newProgress);
  }
  super.onProgressChanged(view, newProgress);
 }

 }

 @Override
 protected void onScrollChanged(int l, int t, int oldl, int oldt) {
 LayoutParams lp = (LayoutParams) progressbar.getLayoutParams();
 lp.x = l;
 lp.y = t;
 progressbar.setLayoutParams(lp);
 super.onScrollChanged(l, t, oldl, oldt);
 }
}
2,설정 R.drawable.btnprogress_웹 뷰 진행 항목 의 색상 값:

<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

 <!--      (  ) -->
 <item android:id="@android:id/background">
 <shape>

  <!--            0                  -->
  <corners android:radius="0dip" />

  <gradient
  android:endColor="#c0c0c0"
  android:startColor="#c0c0c0" />
 </shape>
 </item>

 <!--        (  ) -->
 <item android:id="@android:id/progress">
 <clip>
  <shape>
  <corners android:radius="0dip" />

  <gradient
   android:endColor="#a13864"
   android:startColor="#a13864" />
  </shape>
 </clip>
 </item>

</layer-list>
3.레이아웃 파일 은 어떻게 사용 하나 요?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context="com.summer.progresswebview.MainActivity" >

 <com.summer.progresswebview.ProgressWebView

 android:id="@+id/progresswebview"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"/>

</RelativeLayout>
4.Activity 에서 웹 페이지 내용 을 어떻게 사용 하고 표시 하 는 지:

public class MainActivity extends Activity {
 private ProgressWebView progresswebview;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 initView();
 }

 private void initView() {
 progresswebview = (ProgressWebView) findViewById(R.id.progresswebview);
 progresswebview.getSettings()
  .setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
 progresswebview.getSettings().setJavaScriptEnabled(true);
 progresswebview.getSettings().setSupportZoom(true);
 progresswebview.getSettings().setLoadWithOverviewMode(true);
 progresswebview.getSettings().setUseWideViewPort(true);
 progresswebview.setVerticalScrollBarEnabled(false);
 progresswebview.setHorizontalScrollBarEnabled(false);//      

 progresswebview.getSettings().setBuiltInZoomControls(true); //           
 progresswebview.setWebViewClient(client);
 progresswebview.loadUrl("https://www.baidu.com/"); //         
 }

private WebViewClient client = new WebViewClient() {

 @Override
 public void onPageFinished(WebView view, String url) {
  super.onPageFinished(view, url);
  progresswebview.getSettings().setLoadsImagesAutomatically(true);
 }

 @Override
 public void onPageStarted(WebView view, String url, Bitmap favicon) {
  super.onPageStarted(view, url, favicon);
 }


 public boolean shouldOverrideUrlLoading(WebView view, String url) {

  //       
  if (url.startsWith("mailto:") || url.startsWith("geo:") ||url.startsWith("tel:")) { 
  Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); 
  startActivity(intent); 
  }else
  view.loadUrl(url);


  return true;
 }

 public void onReceivedError(WebView view, int errorCode,
  String description, String failingUrl) {

 }

 };

}
이 몇 가지 절 차 를 통 해 위 챗 공식 번호 글 상세 페이지 에 표 시 된 진도 항목 과 일치 하 는 것 을 실현 하 는 것 이다.
효과 그림:


원본 다운로드:Android 위 챗 페이지 로 딩 진행 막대
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기