wangguan
2020-12-26 e371272a7885723c7b0ef31a20ae5d0fbead1d30
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="80"
        android:background="@drawable/bjskres_bg_login_title"
        android:clickable="true"
        android:focusable="true">
 
        <ImageView
            android:id="@+id/sdkview_sub_back"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_centerVertical="true"
            android:layout_marginStart="10dp"
            android:contentDescription="@string/bjskres_img_desc"
            android:padding="5dp"
            android:src="@drawable/bjskres_icon_back" />
 
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/bjskres_login_title_subchoose"
            android:textColor="@color/bjskres_login_title_text"
            android:textSize="@dimen/bjskres_login_title_size"
            android:textStyle="normal" />
 
    </RelativeLayout>
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="35" />
 
    <!-- android:weightSum="425" -->
 
 
    <RelativeLayout
        android:id="@+id/sdkview_sub_line1"
        style="@style/bjskres_tablerow_style"
        android:layout_weight="75"
        android:background="@drawable/bjskres_bg_blue_square">
 
        <ImageView
            android:id="@+id/sdkview_sub_line1_icon"
            style="@style/bjskres_login_imageview"
            android:layout_centerVertical="true"
            android:layout_marginStart="10dp"
            android:src="@drawable/bjskres_login_icon_user" />
 
 
        <ImageView
            android:id="@+id/sdkview_sub_line1_select"
            style="@style/bjskres_login_imageview"
            android:layout_alignParentEnd="true"
            android:layout_centerInParent="true"
            android:layout_marginEnd="12dip"
            android:src="@drawable/bjskres_login_down" />
 
 
        <TextView
            android:id="@+id/sdkview_sub_line1_account"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginStart="10dp"
            android:layout_toStartOf="@+id/sdkview_sub_line1_select"
            android:layout_toEndOf="@id/sdkview_sub_line1_icon"
            android:background="@null"
            android:gravity="center_vertical"
            android:hint="@string/bjskres_login_hint_subchoose"
            android:singleLine="true"
            android:textColor="@color/bjskres_login_text_black"
            android:textColorHint="@color/bjskres_login_text_grayse"
            android:textSize="@dimen/bjskres_login_hint_size" />
 
 
    </RelativeLayout>
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="15" />
 
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="35" />
 
    <Button
        android:id="@+id/sdkview_sub_login"
        style="@style/bjskres_tablerow_style"
        android:layout_weight="75"
        android:background="@drawable/bjskres_btn_blue_square"
        android:text="@string/bjskres_common_btn_entergame"
        android:textColor="@color/bjskres_white"
        android:textSize="@dimen/bjskres_login_btn_size"
        android:textStyle="normal" />
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="20" />
 
    <Button
        android:id="@+id/sdkview_sub_to_create"
        style="@style/bjskres_tablerow_style"
        android:layout_weight="75"
        android:background="@drawable/bjskres_btn_blue_square"
        android:text="@string/bjskres_login_createsub"
        android:textColor="@color/bjskres_white"
        android:textSize="@dimen/bjskres_login_btn_size"
        android:textStyle="normal" />
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="20" />
 
    <LinearLayout
        style="@style/bjskres_tablerow_style"
        android:layout_weight="60"
        android:gravity="center"
        android:orientation="horizontal" />
 
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="20" />
 
</LinearLayout>