1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <androidx .cardview.widget.CardView xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ xmlns : app =" http://schemas.android.com/apk/res-auto"
4
+ xmlns : card_view =" http://schemas.android.com/tools"
5
+ android : layout_width =" match_parent"
6
+ android : layout_height =" wrap_content"
7
+ android : layout_marginHorizontal =" 16dp"
8
+ android : layout_marginVertical =" 8dp"
9
+ card_view : cardCornerRadius =" 8dp" >
10
+
11
+ <androidx .constraintlayout.widget.ConstraintLayout
12
+ android : layout_width =" match_parent"
13
+ android : layout_height =" wrap_content"
14
+ android : paddingBottom =" 16dp" >
15
+
16
+ <TextView
17
+ android : id =" @+id/missionName"
18
+ android : layout_width =" 0dp"
19
+ android : layout_height =" wrap_content"
20
+ android : layout_margin =" 8dp"
21
+ app : layout_constraintEnd_toEndOf =" parent"
22
+ app : layout_constraintStart_toStartOf =" parent"
23
+ app : layout_constraintTop_toTopOf =" parent" />
24
+
25
+ <TextView
26
+ android : id =" @+id/launchSuccess"
27
+ android : layout_width =" 0dp"
28
+ android : layout_height =" wrap_content"
29
+ android : layout_margin =" 8dp"
30
+ app : layout_constraintEnd_toEndOf =" parent"
31
+ app : layout_constraintStart_toStartOf =" parent"
32
+ app : layout_constraintTop_toBottomOf =" @+id/missionName" />
33
+
34
+ <TextView
35
+ android : id =" @+id/launchYear"
36
+ android : layout_width =" 0dp"
37
+ android : layout_height =" wrap_content"
38
+ android : layout_margin =" 8dp"
39
+ app : layout_constraintEnd_toEndOf =" parent"
40
+ app : layout_constraintStart_toStartOf =" parent"
41
+ app : layout_constraintTop_toBottomOf =" @+id/launchSuccess" />
42
+
43
+ <TextView
44
+ android : id =" @+id/details"
45
+ android : layout_width =" 0dp"
46
+ android : layout_height =" wrap_content"
47
+ android : layout_margin =" 8dp"
48
+ app : layout_constraintEnd_toEndOf =" parent"
49
+ app : layout_constraintStart_toStartOf =" parent"
50
+ app : layout_constraintTop_toBottomOf =" @+id/launchYear" />
51
+
52
+ </androidx .constraintlayout.widget.ConstraintLayout>
53
+
54
+ </androidx .cardview.widget.CardView>
0 commit comments