2021-02-08 10:34:29 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-02-09 17:31:40 +08:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-02-08 10:34:29 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:id="@+id/webView" />
|
|
|
|
|
|
2021-02-09 17:31:40 +08:00
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/loading"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:visibility="invisible"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|