1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<layout xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ xmlns : app =" http://schemas.android.com/apk/res-auto"
3
4
xmlns : tools =" http://schemas.android.com/tools" >
4
5
5
6
<data >
9
10
type =" ch.lock.mobile.android.deviceinfo.ui.main.usiminfo.UsimInfoViewModel" />
10
11
</data >
11
12
12
- <LinearLayout
13
- android : id =" @+id/drawer"
13
+ <androidx .constraintlayout.widget.ConstraintLayout
14
14
android : layout_width =" match_parent"
15
15
android : layout_height =" match_parent"
16
- android : layout_gravity =" start"
17
- android : clickable =" false"
18
- android : focusable =" false"
19
- android : orientation =" vertical"
20
- android : padding =" 15dp" >
21
-
22
- <!-- 전화번호 -->
23
- <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
24
- android : layout_width =" wrap_content"
25
- android : layout_height =" wrap_content"
26
- android : text =" @string/phone_number"
27
- android : textColor =" @color/black"
28
- android : textSize =" 16sp"
29
- android : textStyle =" bold" />
30
-
31
- <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
32
- android : id =" @+id/phoneNumber_TextView"
33
- android : layout_width =" match_parent"
34
- android : layout_height =" wrap_content"
35
- android : layout_marginTop =" 5dp"
36
- android : text =" @{viewModel.phoneNumber}"
37
- android : textColor =" @color/black"
38
- android : textIsSelectable =" true"
39
- android : textSize =" 14sp"
40
- tools : text =" @string/sample_phone_number" />
41
-
42
- <View
43
- android : id =" @+id/contour_phoneNumber"
44
- android : layout_width =" match_parent"
45
- android : layout_height =" 1dp"
46
- android : layout_marginTop =" 10dp"
47
- android : layout_marginBottom =" 10dp"
48
- android : background =" @color/black" />
49
-
50
- <!-- 통신사 -->
51
- <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
52
- android : layout_width =" wrap_content"
53
- android : layout_height =" wrap_content"
54
- android : text =" @string/telecom"
55
- android : textColor =" @color/black"
56
- android : textSize =" 16sp"
57
- android : textStyle =" bold" />
58
-
59
- <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
60
- android : id =" @+id/telecom_TextView"
61
- android : layout_width =" match_parent"
62
- android : layout_height =" wrap_content"
63
- android : layout_marginTop =" 5dp"
64
- android : text =" @{viewModel.telecom}"
65
- android : textColor =" @color/black"
66
- android : textIsSelectable =" true"
67
- android : textSize =" 14sp"
68
- tools : text =" @string/sample_telecom" />
69
-
70
- <View
71
- android : id =" @+id/contour_telecom"
72
- android : layout_width =" match_parent"
73
- android : layout_height =" 1dp"
74
- android : layout_marginTop =" 10dp"
75
- android : layout_marginBottom =" 10dp"
76
- android : background =" @color/black" />
77
-
78
- <!-- usim 시리얼 번호 -->
79
- <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
80
- android : layout_width =" wrap_content"
81
- android : layout_height =" wrap_content"
82
- android : text =" @string/usim_serial_number"
83
- android : textColor =" @color/black"
84
- android : textSize =" 16sp"
85
- android : textStyle =" bold" />
86
-
87
- <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
88
- android : id =" @+id/usimNumber_TextView"
89
- android : layout_width =" match_parent"
90
- android : layout_height =" wrap_content"
91
- android : layout_marginTop =" 5dp"
92
- android : text =" @{viewModel.simNumber}"
93
- android : textColor =" @color/black"
94
- android : textIsSelectable =" true"
95
- android : textSize =" 14sp"
96
- tools : text =" @string/sample_imei" />
97
-
98
- <View
99
- android : id =" @+id/contour_usimNumber"
16
+ android : background =" @color/white" >
17
+
18
+ <LinearLayout
19
+ android : id =" @+id/drawer"
100
20
android : layout_width =" match_parent"
101
- android : layout_height =" 1dp"
102
- android : layout_marginTop =" 10dp"
103
- android : layout_marginBottom =" 10dp"
104
- android : background =" @color/black" />
21
+ android : layout_height =" match_parent"
22
+ android : layout_gravity =" start"
23
+ android : clickable =" false"
24
+ android : focusable =" false"
25
+ android : orientation =" vertical"
26
+ android : padding =" 15dp" >
27
+
28
+ <!-- 전화번호 -->
29
+ <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
30
+ android : layout_width =" wrap_content"
31
+ android : layout_height =" wrap_content"
32
+ android : text =" @string/phone_number"
33
+ android : textColor =" @color/black"
34
+ android : textSize =" 16sp"
35
+ android : textStyle =" bold" />
36
+
37
+ <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
38
+ android : id =" @+id/phoneNumber_TextView"
39
+ android : layout_width =" match_parent"
40
+ android : layout_height =" wrap_content"
41
+ android : layout_marginTop =" 5dp"
42
+ android : text =" @{viewModel.phoneNumber}"
43
+ android : textColor =" @color/black"
44
+ android : textIsSelectable =" true"
45
+ android : textSize =" 14sp"
46
+ tools : text =" @string/sample_phone_number" />
47
+
48
+ <View
49
+ android : id =" @+id/contour_phoneNumber"
50
+ android : layout_width =" match_parent"
51
+ android : layout_height =" 1dp"
52
+ android : layout_marginTop =" 10dp"
53
+ android : layout_marginBottom =" 10dp"
54
+ android : background =" @color/black" />
55
+
56
+ <!-- 통신사 -->
57
+ <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
58
+ android : layout_width =" wrap_content"
59
+ android : layout_height =" wrap_content"
60
+ android : text =" @string/telecom"
61
+ android : textColor =" @color/black"
62
+ android : textSize =" 16sp"
63
+ android : textStyle =" bold" />
64
+
65
+ <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
66
+ android : id =" @+id/telecom_TextView"
67
+ android : layout_width =" match_parent"
68
+ android : layout_height =" wrap_content"
69
+ android : layout_marginTop =" 5dp"
70
+ android : text =" @{viewModel.telecom}"
71
+ android : textColor =" @color/black"
72
+ android : textIsSelectable =" true"
73
+ android : textSize =" 14sp"
74
+ tools : text =" @string/sample_telecom" />
75
+
76
+ <View
77
+ android : id =" @+id/contour_telecom"
78
+ android : layout_width =" match_parent"
79
+ android : layout_height =" 1dp"
80
+ android : layout_marginTop =" 10dp"
81
+ android : layout_marginBottom =" 10dp"
82
+ android : background =" @color/black" />
83
+
84
+ <!-- usim 시리얼 번호 -->
85
+ <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
86
+ android : layout_width =" wrap_content"
87
+ android : layout_height =" wrap_content"
88
+ android : text =" @string/usim_serial_number"
89
+ android : textColor =" @color/black"
90
+ android : textSize =" 16sp"
91
+ android : textStyle =" bold" />
92
+
93
+ <ch .lock.mobile.android.deviceinfo.ui.view.BaseTextView
94
+ android : id =" @+id/usimNumber_TextView"
95
+ android : layout_width =" match_parent"
96
+ android : layout_height =" wrap_content"
97
+ android : layout_marginTop =" 5dp"
98
+ android : text =" @{viewModel.simNumber}"
99
+ android : textColor =" @color/black"
100
+ android : textIsSelectable =" true"
101
+ android : textSize =" 14sp"
102
+ tools : text =" @string/sample_imei" />
103
+
104
+ <View
105
+ android : id =" @+id/contour_usimNumber"
106
+ android : layout_width =" match_parent"
107
+ android : layout_height =" 1dp"
108
+ android : layout_marginTop =" 10dp"
109
+ android : layout_marginBottom =" 10dp"
110
+ android : background =" @color/black" />
111
+
112
+ </LinearLayout >
105
113
106
- </LinearLayout >
114
+ </androidx .constraintlayout.widget.ConstraintLayout >
107
115
108
116
</layout >
0 commit comments