1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <androidx .constraintlayout.widget.ConstraintLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3+ xmlns : app =" http://schemas.android.com/apk/res-auto"
4+ xmlns : tools =" http://schemas.android.com/tools"
5+ android : layout_width =" match_parent"
6+ android : layout_height =" match_parent"
7+ tools : context =" .views.SearchActivity" >
8+
9+ <LinearLayout
10+ android : id =" @+id/search_layout_id"
11+ android : layout_width =" 0dp"
12+ android : layout_height =" wrap_content"
13+ android : layout_marginTop =" 50dp"
14+ android : orientation =" vertical"
15+ app : layout_constraintEnd_toEndOf =" parent"
16+ app : layout_constraintStart_toStartOf =" parent"
17+ app : layout_constraintTop_toBottomOf =" @+id/search_txt_info2" >
18+
19+ <TextView
20+ android : id =" @+id/textView6"
21+ android : layout_width =" wrap_content"
22+ android : layout_height =" wrap_content"
23+ android : layout_marginStart =" 20dp"
24+ android : text =" 잔디 현황을 보고싶은 아이디를 입력해주세요 :)"
25+ android : textColor =" @color/primaryGray2" />
26+
27+ <com .rengwuxian.materialedittext.MaterialEditText
28+ android : id =" @+id/search_edt_id"
29+ android : layout_width =" match_parent"
30+ android : layout_height =" match_parent"
31+ android : layout_marginLeft =" 17dp"
32+ android : layout_marginRight =" 17dp"
33+ android : hint =" 아이디를 입력해 주세요."
34+ app : met_primaryColor =" @color/blue"
35+ app : met_helperText =" "
36+ app : met_singleLineEllipsis =" true" />
37+ </LinearLayout >
38+
39+ <TextView
40+ android : id =" @+id/search_txt_info1"
41+ android : layout_width =" wrap_content"
42+ android : layout_height =" wrap_content"
43+ android : layout_marginStart =" 20dp"
44+ android : layout_marginTop =" 50dp"
45+ android : text =" Daily Commit 잔디 !"
46+ android : textColor =" @color/primaryBlack"
47+ android : textSize =" 22sp"
48+ android : textStyle =" bold"
49+ app : layout_constraintStart_toStartOf =" parent"
50+ app : layout_constraintTop_toTopOf =" parent" />
51+
52+ <TextView
53+ android : id =" @+id/search_txt_info2"
54+ android : layout_width =" wrap_content"
55+ android : layout_height =" wrap_content"
56+ android : layout_marginStart =" 20dp"
57+ android : text =" 서비스를 이용해주셔서 감사합니다."
58+ android : textColor =" @color/primaryBlack"
59+ android : textSize =" 22sp"
60+ android : textStyle =" bold"
61+ app : layout_constraintStart_toStartOf =" parent"
62+ app : layout_constraintTop_toBottomOf =" @+id/search_txt_info1" />
63+
64+ <com .google.android.material.button.MaterialButton
65+ style =" @style/AppLightTheme.Button"
66+ android : id =" @+id/search_btn_ok"
67+ android : layout_width =" match_parent"
68+ android : layout_height =" 55dp"
69+ android : layout_marginStart =" 15dp"
70+ android : layout_marginLeft =" 15dp"
71+ android : layout_marginEnd =" 15dp"
72+ android : layout_marginRight =" 15dp"
73+ android : layout_marginBottom =" 10dp"
74+ android : text =" @string/txt_confirm"
75+ android : textStyle =" bold"
76+ android : textSize =" 18sp"
77+ app : layout_constraintBottom_toBottomOf =" parent"
78+ app : layout_constraintCircleRadius =" 30dp"
79+ app : layout_constraintEnd_toEndOf =" parent"
80+ app : layout_constraintStart_toStartOf =" parent" />
81+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments