您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在Android中實現微信加載H5頁面進度條,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
1-1.自定義類繼承WebView類
class ProgressWebView(context: Context, attr: AttributeSet) : WebView(context, attr) { /** *xml布局中使用,所以用兩個構造參數的構造函數 */ private var progressBar: ProgressBar? = null /** *初始化屬性操作 */ init { /** *設置ProgressBar是橫向 */ progressBar = ProgressBar(context, null, android.R.attr.progressBarStyleHorizontal) /** *設置進度條屬性 */ progressBar!!.progressDrawable = context.resources.getDrawable(R.drawable.webview_hori_progress) /** *設置ProgressBar的布局參數 */ val layoutParams = FrameLayout.LayoutParams(LayoutParams.MATCH_PARENT, 10, 0) /** *綁定參數 */ progressBar!!.layoutParams = layoutParams /** *將ProgressBar添加到WebView上 默認頭部 */ addView(progressBar) /** *設置WebView輔助類WebChromeClient,獲取實時加載進度 */ setWebChromeClient(object : WebChromeClient() { override fun onProgressChanged(webview: WebView?, progress: Int) { super.onProgressChanged(webview, progress) Log.d("progressView", progress.toString()) if (progress == 100) progressBar!!.visibility = View.GONE else { progressBar!!.visibility = View.VISIBLE /** *設置進度參數 */ progressBar!!.progress = progress } } }) } }
看下設置的加載進度條的屬性,webview_hori_progress.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <!--最下層item屬性--> <item> <shape> <!--無圓角--> <corners android:radius="0dp" /> <!--線條顏色--> <gradient android:endColor="#FFE4E3E3" android:startColor="#FFE4E3E3" /> </shape> </item> <!--上層item屬性--> <item> <clip> <shape> <!--無圓角--> <corners android:radius="0dip" /> <!--線條顏色 漸變,由深到淺--> <gradient android:centerColor="#96EF1627" android:endColor="#50F53D4B" android:startColor="#FFEF1627" /> </shape> </clip> </item> </layer-list>
1-2.xml 布局中引用
<com.ypl.csdndemo.ProgressWebView android:id="@+id/wvProgress" android:layout_width="match_parent" android:layout_height="match_parent"/>
1-3.代碼實現
/** *android kotlin 的拓展,導入此包 使用到的組件不用findViewById */ import kotlinx.android.synthetic.main.activity_main.* class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) /** *WebView設置屬性 */ val setting = wvProgress.settings /** *本地緩存無則網絡 */ setting.cacheMode = WebSettings.LOAD_CACHE_ELSE_NETWORK /** *設置識別javascript代碼 */ setting.javaScriptEnabled = true /** *縱向scrollbar去除 */ wvProgress.isVerticalScrollBarEnabled =false /** *加載頁面 */ wvProgress.loadUrl("https://blog.csdn.net/") } }
以上就是怎么在Android中實現微信加載H5頁面進度條,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。