| 123456789101112131415161718192021222324252627282930 |
- <?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">
- <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>
|