Android WebView顶部进度条

项目中用到WebView加上进度条放在顶部,让用户知道加载进度情况,可以提高用户体验:

效果:

布局:

<RelativeLayout

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:orientation="vertical">

        <WebView

            android:id="@+id/webView"

            android:layout_width="match_parent"

            android:layout_height="match_parent"

            android:layout_below="@+id/toolbar_container" />

        <ProgressBar

            android:id="@+id/progressBar"

            style="@style/crowd_item_progressBar"

            android:layout_width="match_parent"

            android:layout_height="3dp"

            android:layout_below="@+id/toolbar_container"

            android:background="@drawable/crowd_progressbar_unselect" />

</RelativeLayout>

进度条样式:

<style name="crowd_item_progressBar">

        <item name="android:indeterminateOnly">false</item>

        <item name="android:progressDrawable">@drawable/crowd_progressbar_background</item>

        <item name="android:minHeight">10dp</item>

        <item name="android:maxHeight">10dp</item>

</style>

进度图片:

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

    <item

        android:id="@android:id/progress" >

        <clip>

            <shape>

                <solid android:color="@color/selected"/>

                <!--<corners android:radius="1.5dp"/>-->

            </shape>

        </clip>

    </item>

</layer-list>

代码:

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

        }

    }

    @Override

    protected void onScrollChanged(int l, int t, int oldl, int oldt) {

        LayoutParams lp = (LayoutParams) mProgressBar.getLayoutParams();

        lp.x = l;

        lp.y = t;

        mProgressBar.setLayoutParams(lp);

        super.onScrollChanged(l, t, oldl, oldt);

    }

}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值