|
|
@@ -0,0 +1,30 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/white_F9F9F9">
|
|
|
+
|
|
|
+ <com.tencent.smtt.sdk.WebView
|
|
|
+ android:id="@+id/webview"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
|
|
|
+ android:scrollbars="none" />
|
|
|
+
|
|
|
+ <ProgressBar
|
|
|
+ android:id="@+id/act_web_loading_pb"
|
|
|
+ style="?android:attr/progressBarStyleHorizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="2dp"
|
|
|
+ android:layout_alignParentTop="true"
|
|
|
+ android:max="100"
|
|
|
+ android:progress="0"
|
|
|
+ android:progressDrawable="@drawable/lay_list_progress_yellow" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/act_web_loading_iv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true" />
|
|
|
+
|
|
|
+</RelativeLayout>
|