1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <androidx .constraintlayout.widget.ConstraintLayout
3+ xmlns : android =" http://schemas.android.com/apk/res/android"
4+ xmlns : app =" http://schemas.android.com/apk/res-auto"
5+ android : layout_width =" match_parent"
6+ android : layout_height =" match_parent"
7+ android : padding =" 16dp" >
8+
9+ <ImageView
10+ android : id =" @+id/gsr_detail_iv"
11+ android : layout_width =" match_parent"
12+ android : layout_height =" 200dp"
13+ android : scaleType =" centerCrop"
14+ app : layout_constraintTop_toTopOf =" parent"
15+ app : layout_constraintStart_toStartOf =" parent"
16+ app : layout_constraintEnd_toEndOf =" parent" />
17+
18+ <TextView
19+ android : id =" @+id/gsr_detail_location_tv"
20+ android : layout_width =" 0dp"
21+ android : layout_height =" wrap_content"
22+ android : layout_marginTop =" 16dp"
23+ android : textSize =" 20sp"
24+ android : textStyle =" bold"
25+ app : layout_constraintTop_toBottomOf =" @id/gsr_detail_iv"
26+ app : layout_constraintStart_toStartOf =" parent"
27+ app : layout_constraintEnd_toEndOf =" parent" />
28+
29+ <TextView
30+ android : id =" @+id/gsr_detail_date_tv"
31+ android : layout_width =" 0dp"
32+ android : layout_height =" wrap_content"
33+ android : layout_marginTop =" 8dp"
34+ android : textSize =" 16sp"
35+ app : layout_constraintTop_toBottomOf =" @id/gsr_detail_location_tv"
36+ app : layout_constraintStart_toStartOf =" parent"
37+ app : layout_constraintEnd_toEndOf =" parent" />
38+
39+ <TextView
40+ android : id =" @+id/gsr_detail_booking_id_tv"
41+ android : layout_width =" 0dp"
42+ android : layout_height =" wrap_content"
43+ android : layout_marginTop =" 8dp"
44+ android : textSize =" 14sp"
45+ android : textColor =" @color/gray"
46+ app : layout_constraintTop_toBottomOf =" @id/gsr_detail_date_tv"
47+ app : layout_constraintStart_toStartOf =" parent"
48+ app : layout_constraintEnd_toEndOf =" parent" />
49+
50+ </androidx .constraintlayout.widget.ConstraintLayout>
0 commit comments