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
72
73
<?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="#FEFFFF" >
    
    <RelativeLayout
        android:id="@+id/relativeLayout1"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:background="@color/qr_color_fac000" >
 
        <ImageView
            android:id="@+id/img_findpwd_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:scaleType="center"
            android:background="@mipmap/sp_white_back" />
 
        <TextView
            android:id="@+id/title_text_find_acc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/super_pocket_games"
            android:textColor="#FFFFFF"
            android:textSize="22sp"
            />
    </RelativeLayout>
 
    <TextView
        android:id="@+id/cs_textview"
        android:layout_width="wrap_content"
        android:layout_height="48dp"
        android:layout_below="@+id/relativeLayout1"
        android:layout_centerHorizontal="true"
        android:gravity="center_vertical"
        android:paddingLeft="8dp"
        android:textSize="16dp"
        android:text="@string/txt_accountfind"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="#DECCAC" />
    
    
    <ListView
        android:id="@+id/lv_accountfind_account"
        android:layout_below="@+id/cs_textview"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:layout_width="match_parent"
        android:layout_height="380dp" 
        android:divider="#00000000"
        android:dividerHeight="40dp"
        android:minHeight="140dp"
        android:background="#FFFFFF">
    </ListView>
 
    <TextView
        android:id="@+id/cs_server"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/lv_accountfind_account"
        android:layout_below="@+id/lv_accountfind_account"
        android:layout_marginBottom="15dp"
        android:text="@string/cs_service"
        android:clickable="true"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="#EA8367" />
 
</RelativeLayout>