当前位置: 首页 > 编程笔记 >

Android中WebView加载网页设置进度条

阳建弼
2023-03-14
本文向大家介绍Android中WebView加载网页设置进度条,包括了Android中WebView加载网页设置进度条的使用技巧和注意事项,需要的朋友参考一下

本文实例为大家分享了Android中WebView加载网页设置进度条的具体代码,供大家参考,具体内容如下

效果:

xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="match_parent"
 android:layout_height="match_parent">
 <LinearLayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content">
 <RelativeLayout
 android:layout_width="match_parent"
 android:layout_height="48dp"
 android:background="@color/colorPrimary"
 android:layout_weight="0">
 <ImageView
 android:id="@+id/activity_add_authentication_back"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:src="@drawable/activity_news_back"
 android:layout_marginLeft="10dp"/>
 <TextView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="网页"
 android:textColor="@color/white"
 android:layout_centerVertical="true"
 android:layout_centerHorizontal="true"
 android:textSize="18sp"/>
 </RelativeLayout>
 </LinearLayout>
 <ProgressBar
 android:id="@+id/progressBar1"
 style="?android:attr/progressBarStyleHorizontal"
 android:layout_width="match_parent"
 android:layout_height="3dip"
 android:progressDrawable="@drawable/pg"
 android:visibility="gone" />

 <WebView
 android:id="@+id/web_view"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 </WebView>
</LinearLayout>

pg.xml

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

 <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>
 <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>

Java文件:

package com.vimi8.app.activity;

import android.content.Context;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.JavascriptInterface;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ProgressBar;
import android.widget.Toast;

import com.vimi8.app.R;
import com.vimi8.app.framework.ActivityBase;

/**
 * Created by vimi8 on 2017/4/18.
 */

public class YyxText extends ActivityBase {

 private WebView myWebView ;

 private ProgressBar pg1;


 @Override
 protected void initVariables(Bundle savedInstanceState) {

 }

 @Override
 protected int initLayoutViews() {
 return R.layout.yyx_text;
 }

 @Override
 protected void initViewsAndStaticData() {
 //获取webview控件
 myWebView = (WebView) findViewById(R.id.web_view);
 pg1=(ProgressBar) findViewById(R.id.progressBar1);

 //加载服务器上的页面
 myWebView.loadUrl("http://www.baidu.com");
 //加载本地中的html
 //myWebView.loadUrl("file:///android_asset/www/test2.html");
 //加上下面这段代码可以使网页中的链接不以浏览器的方式打开
 myWebView.setWebViewClient(new WebViewClient());
 //得到webview设置
 WebSettings webSettings = myWebView.getSettings();
 //允许使用javascript
 webSettings.setJavaScriptEnabled(true);
 //将WebAppInterface于javascript绑定
 myWebView.addJavascriptInterface(new WebAppInterface(this), "Android");

 //设置经度条
 myWebView.setWebChromeClient(new WebChromeClient(){
 @Override
 public void onProgressChanged(WebView view, int newProgress) {
 // TODO 自动生成的方法存根

 if(newProgress==100){
  pg1.setVisibility(View.GONE);//加载完网页进度条消失
 }
 else{
  pg1.setVisibility(View.VISIBLE);//开始加载网页时显示进度条
  pg1.setProgress(newProgress);//设置进度值
 }

 }
 });

 }


 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
 if ((keyCode == KeyEvent.KEYCODE_BACK) && myWebView.canGoBack()) {
 myWebView.goBack();
 return true;
 }
 return super.onKeyDown(keyCode, event);
 }


 public class WebAppInterface {
 Context mContext;

 /** Instantiate the interface and set the context */
 WebAppInterface(Context c) {
 mContext = c;
 }

 /** Show a toast from the web page */
 @JavascriptInterface
 public void showToast(String toast) {
 Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
 }
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍Android Webview添加网页加载进度条实例详解,包括了Android Webview添加网页加载进度条实例详解的使用技巧和注意事项,需要的朋友参考一下 推荐阅读:Android WebView线性进度条实例详解 最近在android项目中使用webview嵌套了一个抽奖活动网页,活动上线,运行良好(改了N次需求和突发bug),还好这种模式的活动,只需要修改网页,不需要重新打

  • 本文向大家介绍Android中替换WebView加载网页失败时的页面,包括了Android中替换WebView加载网页失败时的页面的使用技巧和注意事项,需要的朋友参考一下 我们用webView去请求一个网页链接的时候,如果请求网页失败或无网络的情况下,它会返回给我们这样一个页面,如下图所示:   上面这个页面就是系统自带的页面,你觉得是不是很丑?反正小编本人觉得非常丑,很难看,于是乎小编就在想能不

  • 问题内容: 我的问题是该网页未加载到webview中。 启动网络浏览器… 这是我的活动代码: 我在清单中添加了所需的权限: 问题答案: 由于这篇文章,我终于找到了解决方案。这是代码:

  • 我正在开发一个android应用程序。我的应用程序中有一个webview,它将加载一个网页。 我用,网络视图工作正常。但它无法加载xxx。html(此网站受Cloudflare保护) 我像这样添加了WebViewClient 但是public void onPageStarted(WebView视图、字符串url、位图favicon){从不调用。 等了很久,我得到这个图像 https://driv

  • 我试着在网络视图中查看http://artikelweb.com。网页显示得很好。但是,每当我从“热门作者”部分转到任何作者链接时,网页都会出现,但是加载后,报价没有显示。 在Google Chrome浏览器(移动)中,加载后会出现引号, 但是,在我的应用程序中,引用不会显示在网络视图中。 代码片段:

  • 问题内容: 我是android应用程序开发和学习的新手。 我已经开发了一个使用加载网站链接的应用程序。而且工作正常。 但是我在加载页面时显示和隐藏进度条时遇到了问题。 当WebView加载网站的主链接和内部链接时,我想显示一个进度条(仅在中心旋转),而在页面完全加载时,我要隐藏进度条。 我的Java代码: 还有我的布局XML代码: 现在,将显示进度条,但不会隐藏。 当我创建 进度条 对象并在Jav