hch
6 天以前 aaa822b7f20f04d9ae00fff5efa6c2ec7e2cd83c
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
74
75
76
77
78
79
80
81
82
83
84
<?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="wrap_content"
    android:background="@drawable/game_sdk_shape_bg_round">
 
    <ImageView
        android:id="@+id/iv_back"
        style="@style/game_sdk_dialog_title_back"
        android:visibility="gone" />
 
    <ImageView
        android:id="@+id/iv_dismiss"
        style="@style/game_sdk_dialog_title_dismiss"
        android:visibility="visible" />
 
    <TextView
        android:id="@+id/tv_title"
        style="@style/game_sdk_dialog_tile_text"
        android:text="@string/game_sdk_win_account_shiming" />
 
    <TextView
        android:id="@+id/tv_notice"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/tv_title"
        android:layout_marginLeft="@dimen/game_sdk_dialog_weight_padding"
        android:layout_marginRight="@dimen/game_sdk_dialog_weight_padding"
        android:text="@string/game_sdk_win_account_shiming_tips"
        android:textColor="@color/game_sdk_common_text_color"
        android:textSize="12sp" />
 
    <com.yyjia.sdk.widget.ClearEditText
        android:id="@+id/et_name"
        style="@style/game_sdk_dialog_edit_text"
        android:layout_below="@+id/tv_notice"
        android:layout_marginLeft="@dimen/game_sdk_dialog_weight_padding"
        android:layout_marginRight="@dimen/game_sdk_dialog_weight_padding"
        android:layout_marginTop="@dimen/game_sdk_dialog_weight_padding"
        android:background="@drawable/game_sdk_shape_bg_input"
        android:hint="@string/game_sdk_win_account_inpname" />
 
    <com.yyjia.sdk.widget.ClearEditText
        android:id="@+id/et_id_number"
        style="@style/game_sdk_dialog_edit_text"
        android:layout_below="@+id/et_name"
        android:layout_marginLeft="@dimen/game_sdk_dialog_weight_padding"
        android:layout_marginRight="@dimen/game_sdk_dialog_weight_padding"
        android:layout_marginTop="@dimen/game_sdk_dialog_weight_padding"
        android:background="@drawable/game_sdk_shape_bg_input"
        android:hint="@string/game_sdk_win_account_inpsfz" />
 
    <Button
        android:id="@+id/btn_identity_auth"
        style="@style/game_sdk_dialog_btn"
        android:layout_below="@+id/et_id_number"
        android:layout_marginTop="@dimen/game_sdk_dialog_weight_padding"
        android:text="@string/game_sdk_win_account_shiming" />
 
    <LinearLayout
        android:id="@+id/ll_is_notice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/btn_identity_auth"
        android:layout_marginRight="@dimen/game_sdk_dialog_weight_padding"
        android:layout_marginTop="8dp"
        android:gravity="center"
        android:orientation="horizontal">
 
        <ImageView
            android:id="@+id/iv_is_notice"
            android:layout_width="25dp"
            android:layout_height="25dp" />
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tv_safe_content"
            android:layout_marginLeft="5dp"
            android:text="@string/game_sdk_win_login_notip"
            android:textColor="@color/game_sdk_common_text_color" />
    </LinearLayout>
</RelativeLayout>