91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中實現微信加載H5頁面進度條

發布時間:2021-06-09 17:10:58 來源:億速云 閱讀:265 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關怎么在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頁面進度條,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

横峰县| 冀州市| 灵璧县| 三河市| 武冈市| 永春县| 曲周县| 灵丘县| 陕西省| 孝昌县| 秦皇岛市| 德江县| 平南县| 信宜市| 鄂托克旗| 合川市| 邳州市| 安国市| 临邑县| 屏东县| 深州市| 大田县| 英德市| 沙坪坝区| 昌江| 荃湾区| 治多县| 巴彦县| 台中市| 辛集市| 城步| 苗栗市| 陆河县| 靖安县| 两当县| 扎鲁特旗| 承德市| 扎赉特旗| 怀安县| 正安县| 福州市|