直播平臺開發,載入網頁、html檔案顯示載入進度

zhibo系統開發發表於2023-11-23

直播平臺開發,載入網頁、html檔案顯示載入進度

一、檢視繫結

透過檢視繫結功能,您可以更輕鬆地編寫可與檢視互動的程式碼。在模組中啟用檢視繫結之後,系統會為該模組中的每個 XML 佈局檔案生成一個繫結類。繫結類的例項包含對在相應佈局中具有 ID 的所有檢視的直接引用。


在大多數情況下,檢視繫結會替代 findViewById。


檢視繫結功能可按模組啟用。要在某個模組中啟用檢視繫結,請將 viewBinding 元素新增到其 build.gradle 檔案中,如下例所示:

    viewBinding {
        enabled = true
    }


二、新建載入WebViewActivity

新建WebViewActivity載入網頁html檔案

class WebViewActivity : AppCompatActivity() {
    
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
    }
}


 

頁面xml檔案activity_web_view如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="
    xmlns:tools="
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="
    <WebView
        android:id="@+id/web_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <ProgressBar
        android:id="@+id/progressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="5dp"
        android:background="@null"
        android:indeterminateOnly="false"
        android:max="100"
        app:layout_constraintTop_toTopOf="parent"
        android:progressDrawable="@drawable/progress_bar_horizontal"/>
</androidx.constraintlayout.widget.ConstraintLayout>


進度條progress_bar_horizontal.xml樣式如下:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android=" >
    <item
        android:id="@android:id/background"
        android:drawable="@color/white"/>
    <item android:id="@android:id/progress">
        <clip>
            <shape>
                <gradient
                    android:angle="270"
                    android:centerColor="#00923F"
                    android:centerY="0.75"
                    android:endColor="#888C98"
                    android:startColor="#00923F" />
            </shape>
        </clip>
    </item>
</layer-list>


 以上就是 直播平臺開發,載入網頁、html檔案顯示載入進度,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2996827/,如需轉載,請註明出處,否則將追究法律責任。

相關文章