Android WebView實現(xiàn)頂部進度條
更新時間:2019年11月29日 10:03:44 作者:Android格調(diào)小窩
這篇文章主要為大家詳細介紹了Android WebView實現(xiàn)頂部進度條,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
項目中用到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);
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- Android中WebView加載網(wǎng)頁設(shè)置進度條
- Android自定義帶進度條WebView仿微信加載過程
- Android 實現(xiàn)帶進度條的WebView的實例
- Android中WebView加載網(wǎng)頁設(shè)置進度條
- android實現(xiàn)用戶體驗超棒的微信WebView進度條
- Android編程實現(xiàn)WebView添加進度條的方法
- Android 帶進度條的WebView 示例代碼
- Android Webview添加網(wǎng)頁加載進度條實例詳解
- Android WebView線性進度條實例詳解
- Android中實現(xiàn)Webview頂部帶進度條的方法
相關(guān)文章
android實現(xiàn)雙日期選擇控件(可隱藏日,只顯示年月)
本篇文章主要介紹了android實現(xiàn)雙日期選擇控件(可隱藏日,只顯示年月) ,非常具有實用價值,需要的朋友可以參考下。2017-01-01
Android 自定義標(biāo)題欄 顯示網(wǎng)頁加載進度的方法實例
Android 自定義標(biāo)題欄 顯示網(wǎng)頁加載進度的方法實例,需要的朋友可以參考一下2013-06-06
Android對話框AlertDialog與DatePickerDialog及TimePickerDialog使用詳解
這篇文章主要介紹了Android對話框中的提醒對話框AlertDialog、日期對話框DatePickerDialog、時間對話框TimePickerDialog使用方法,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧2022-09-09
Android彈出dialog后無法捕捉back鍵的解決方法
這篇文章主要為大家詳細介紹了Android彈出dialog后無法捕捉back鍵的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-09-09
Android用SharedPreferences實現(xiàn)登錄注冊注銷功能
這篇文章主要為大家詳細介紹了Android用SharedPreferences實現(xiàn)登錄注冊注銷功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-04-04
詳解用RxJava實現(xiàn)事件總線(Event Bus)
本篇文章主要介紹了用RxJava實現(xiàn)事件總線(Event Bus),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-11-11

