client_Hale
2018-09-20 11a35343de8c14c2ddc879caffa40fa239397404
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?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:clipToPadding="true"
                android:fitsSystemWindows="true">
 
    <RelativeLayout
        android:id="@+id/game_server_title"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:background="@color/sp_color_fac000">
 
        <TextView
            android:id="@+id/title_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:text="@string/sp_txt_appeal"
            android:textColor="#FFFFFF"
            android:textSize="18sp"/>
 
        <ImageView
            android:id="@+id/back"
            android:layout_width="48dp"
            android:layout_height="48dp"
            android:layout_centerVertical="true"
            android:background="@drawable/sp_backbtn_bg_selector"
            android:padding="13dp"
            android:scaleType="fitXY"
            android:src="@mipmap/sp_login_close"/>
    </RelativeLayout>
 
    <ProgressBar
        android:id="@+id/myProgressBar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="3dip"
        android:layout_below="@id/game_server_title"
        android:progressDrawable="@drawable/sp_pg"
        android:visibility="gone"
        />
 
    <TextView
        android:id="@+id/txt_community_close"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:background="@drawable/sp_textview_selector"
        android:clickable="true"
        android:drawableLeft="@mipmap/cs_pay_close"
        android:visibility="gone"/>
 
    <com.tencent.smtt.sdk.WebView
        android:id="@+id/game_server_webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/myProgressBar"/>
 
    <!--
        <cc.sp.gamesdk.widget.ProgressWebView
            android:id="@+id/game_server_webview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/myProgressBar" />
    -->
 
</RelativeLayout>