guild_float_webview.xml
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/guild_float_closeout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/guild_float_webview_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fcfcfc"
android:orientation="vertical">
<ImageView
android:id="@+id/guild_float_webview_load"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:src="@drawable/fancyservice_loading"
android:contentDescription="@string/guild_img_des"
android:scaleType="center"
android:visibility="gone"/>
<!--暂时隐藏闪屏页-->
<WebView
android:id="@+id/guild_float_webview_page"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ProgressBar
android:id="@+id/fancy_progress_loading"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center"
android:layout_centerInParent="true"
android:background="@color/guild_color_white"
android:indeterminateBehavior="repeat"
android:indeterminateDrawable="@drawable/fancy_loading"/>
</RelativeLayout>
</RelativeLayout>