p7725_sdk_view_web.xml
1.65 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
44
45
46
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
android:orientation="vertical" >
<com.platform7725.gamesdk.view.TitleView
android:id="@+id/webview_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical" >
<WebView
android:id="@+id/webview_content"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/loading_root"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center_vertical"
android:orientation="horizontal" >
<ProgressBar
android:layout_width="15dp"
android:layout_height="15dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/com_7725_loading"
android:textColor="@color/p7725_sdk_black_light"
android:layout_marginLeft="@dimen/p7725_distance_half"
android:textSize="@dimen/p7725_font_name_size" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>