Daily checkup

This commit is contained in:
2026-05-20 08:49:14 +03:00
parent 2fbeae26a6
commit b22cdd93eb
46 changed files with 5478 additions and 680 deletions
@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/settings_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:padding="16dp">
<LinearLayout
@@ -13,20 +15,19 @@
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="🔌 Интерфейсы: UDP и BLE"
android:textSize="22sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_marginBottom="24dp"
android:gravity="center"
android:layout_marginBottom="24dp" />
android:text="@string/interfaces_title"
android:textAppearance="?attr/textAppearanceHeadlineSmall"
android:textColor="?attr/colorOnSurface" />
<!-- UDP -->
<com.google.android.material.card.MaterialCardView
style="?attr/materialCardViewElevatedStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
app:cardCornerRadius="8dp"
app:cardElevation="4dp">
app:cardCornerRadius="12dp">
<LinearLayout
android:layout_width="match_parent"
@@ -37,18 +38,17 @@
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="📡 UDP"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_marginBottom="12dp" />
android:layout_marginBottom="12dp"
android:text="@string/interfaces_section_udp"
android:textAppearance="?attr/textAppearanceTitleMedium"
android:textColor="?attr/colorOnSurface" />
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:hint="UDP Порт"
app:helperText="Порт для прослушивания AIS данных">
android:hint="@string/interfaces_udp_port_hint"
app:helperText="@string/interfaces_udp_port_helper">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et_udp_port"
@@ -63,20 +63,20 @@
android:id="@+id/switch_udp_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Включить UDP слушатель"
android:textSize="16sp"
android:checked="true" />
android:checked="true"
android:text="@string/interfaces_udp_enabled" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<!-- BLE -->
<com.google.android.material.card.MaterialCardView
style="?attr/materialCardViewElevatedStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
app:cardCornerRadius="8dp"
app:cardElevation="4dp">
app:cardCornerRadius="12dp">
<LinearLayout
android:layout_width="match_parent"
@@ -87,33 +87,30 @@
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="📶 BLE"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_marginBottom="12dp" />
android:layout_marginBottom="12dp"
android:text="@string/interfaces_section_ble"
android:textAppearance="?attr/textAppearanceTitleMedium"
android:textColor="?attr/colorOnSurface" />
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switch_ble_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Включить BLE источник NMEA"
android:textSize="16sp"
android:layout_marginBottom="8dp" />
android:layout_marginBottom="8dp"
android:text="@string/interfaces_ble_enabled" />
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:hint="MAC адрес BLE устройства"
app:helperText="Например: 01:23:45:67:89:AB">
android:hint="@string/interfaces_ble_mac_hint"
app:helperText="@string/interfaces_ble_mac_helper">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et_ble_mac"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:text="" />
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
@@ -122,20 +119,20 @@
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_ble_scan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Сканировать BLE"
style="@style/Widget.Material3.Button" />
android:text="@string/interfaces_ble_scan" />
<Button
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_ble_stop_scan"
style="?attr/materialButtonOutlinedStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Стоп"
android:layout_marginStart="8dp"
style="@style/Widget.Material3.Button.OutlinedButton" />
android:text="@string/interfaces_ble_stop" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
@@ -144,16 +141,33 @@
android:layout_height="200dp"
android:layout_marginTop="8dp" />
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switch_ble_battery_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/interfaces_ble_battery_enabled" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="4dp"
android:text="@string/interfaces_ble_battery_helper"
android:textAppearance="?attr/textAppearanceBodySmall"
android:textColor="?attr/colorOnSurfaceVariant" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<!-- BLE UDP Bridge -->
<!-- BLE UDP Bridge -->
<com.google.android.material.card.MaterialCardView
style="?attr/materialCardViewElevatedStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
app:cardCornerRadius="8dp"
app:cardElevation="4dp">
app:cardCornerRadius="12dp">
<LinearLayout
android:layout_width="match_parent"
@@ -164,25 +178,23 @@
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="🔁 BLE UDP Bridge"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@android:color/black"
android:layout_marginBottom="12dp" />
android:layout_marginBottom="12dp"
android:text="@string/interfaces_section_bridge"
android:textAppearance="?attr/textAppearanceTitleMedium"
android:textColor="?attr/colorOnSurface" />
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switch_ble_udp_bridge_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Включить UDP-bridge (пересылать NMEA)"
android:textSize="16sp"
android:layout_marginBottom="8dp" />
android:layout_marginBottom="8dp"
android:text="@string/interfaces_bridge_enabled" />
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:hint="UDP Host (назначение)">
android:hint="@string/interfaces_bridge_host_hint">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et_ble_udp_host"
@@ -196,8 +208,7 @@
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:hint="UDP Port (назначение)">
android:hint="@string/interfaces_bridge_port_hint">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et_ble_udp_port"
@@ -209,29 +220,33 @@
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:orientation="horizontal"
android:gravity="end">
android:paddingTop="8dp"
android:paddingBottom="8dp">
<Button
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_cancel"
style="?attr/materialButtonOutlinedStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Отмена"
android:layout_marginEnd="8dp"
style="@style/Widget.Material3.Button.OutlinedButton" />
android:text="@string/settings_action_cancel" />
<Button
<com.google.android.material.button.MaterialButton
android:id="@+id/btn_save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Сохранить"
style="@style/Widget.Material3.Button" />
android:text="@string/settings_action_save" />
</LinearLayout>
</LinearLayout>
</ScrollView>