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)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:
- Android中WebView加載網(wǎng)頁設置進度條
- Android自定義帶進度條WebView仿微信加載過程
- Android 實現(xiàn)帶進度條的WebView的實例
- Android中WebView加載網(wǎng)頁設置進度條
- android實現(xiàn)用戶體驗超棒的微信WebView進度條
- Android編程實現(xiàn)WebView添加進度條的方法
- Android 帶進度條的WebView 示例代碼
- Android Webview添加網(wǎng)頁加載進度條實例詳解
- Android WebView線性進度條實例詳解
- Android中實現(xiàn)Webview頂部帶進度條的方法
相關(guān)文章
Android項目實戰(zhàn)之仿網(wǎng)易新聞的頁面(RecyclerView )
這篇文章主要介紹了Android項目實戰(zhàn)之仿網(wǎng)易新聞的頁面,ViewPager作為RecyclerView的Header,感興趣的小伙伴們可以參考一下2016-01-01Android自定義ViewGroup實現(xiàn)標簽流效果
這篇文章主要為大家詳細介紹了Android自定義ViewGroup實現(xiàn)標簽流效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-06-06Android Studio升級到3.0 Terminal 中文顯示異常解決
本篇文章主要介紹了Android Studio升級到3.0 Terminal 中文顯示異常解決,非常具有實用價值,需要的朋友可以參考下2017-10-10