blob: c270d1f41503ca3e8397e55568b921b63272e5e4 (
plain)
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
141
142
|
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="24dp"
android:background="?attr/colorSurface">
<TextView
android:id="@+id/safety_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Safety Dashboard"
android:textSize="24sp"
android:textStyle="bold"
android:textColor="?attr/colorOnSurface"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<com.google.android.material.button.MaterialButton
android:id="@+id/button_help_safety"
style="@style/Widget.Material3.Button.TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="HELP"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<!-- MOB Section -->
<com.google.android.material.card.MaterialCardView
android:id="@+id/card_mob"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
app:cardCornerRadius="16dp"
app:layout_constraintTop_toBottomOf="@id/safety_title">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MAN OVERBOARD"
android:textColor="@color/md_theme_error"
android:textStyle="bold" />
<com.google.android.material.button.MaterialButton
android:id="@+id/button_mob_activate"
android:layout_width="match_parent"
android:layout_height="80dp"
android:layout_marginTop="16dp"
android:text="ACTIVATE MOB"
android:textSize="20sp"
app:backgroundTint="@color/md_theme_error" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<!-- CPA / Collision Alert Section -->
<com.google.android.material.card.MaterialCardView
android:id="@+id/card_cpa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:cardCornerRadius="16dp"
app:layout_constraintTop_toBottomOf="@id/card_mob">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="COLLISION AVOIDANCE"
android:textStyle="bold" />
<TextView
android:id="@+id/tv_cpa_status"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="No traffic alerts"
android:textColor="?attr/colorOnSurfaceVariant"
android:fontFamily="monospace"
android:textSize="13sp" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<!-- Anchor Section -->
<com.google.android.material.card.MaterialCardView
android:id="@+id/card_anchor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:cardCornerRadius="16dp"
app:layout_constraintTop_toBottomOf="@id/card_cpa">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ANCHOR WATCH"
android:textStyle="bold" />
<TextView
android:id="@+id/anchor_status_summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Status: Inactive"
android:textColor="?attr/colorOnSurfaceVariant" />
<com.google.android.material.button.MaterialButton
android:id="@+id/button_anchor_config"
style="@style/Widget.Material3.Button.TonalButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="CONFIGURE ANCHOR WATCH" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
</androidx.constraintlayout.widget.ConstraintLayout>
|