2023-05-30 08:48:59 +05:30
|
|
|
<?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"
|
2023-09-22 11:40:17 +05:30
|
|
|
tools:context="com.example.hpostesting.presentation.dashboard.GalleryFragment">
|
2023-05-30 08:48:59 +05:30
|
|
|
|
2024-01-05 14:40:48 +05:30
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_subtitle4"
|
|
|
|
|
style="@style/title1_1"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:layout_marginHorizontal="24dp"
|
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="Start"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
|
2023-09-22 11:40:17 +05:30
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btn_submit"
|
2024-01-04 01:11:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:layout_height="wrap_content"
|
2023-09-22 11:40:17 +05:30
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/check_buffer"
|
|
|
|
|
android:textColor="@color/white"
|
2024-01-04 01:11:30 +05:30
|
|
|
app:cornerRadius="16dp"
|
2023-05-30 08:48:59 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2023-09-22 11:40:17 +05:30
|
|
|
|
|
|
|
|
|
2023-10-12 17:20:37 +05:30
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btn_diagnostics"
|
2024-01-04 01:11:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2023-10-12 17:20:37 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/diagnostics"
|
|
|
|
|
android:textColor="@color/white"
|
2024-01-04 01:11:30 +05:30
|
|
|
app:cornerRadius="16dp"
|
2023-10-12 17:20:37 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_submit" />
|
2024-01-04 01:11:30 +05:30
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_auto_dac"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/auto_dac"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_diagnostics" />
|
|
|
|
|
|
2024-01-04 12:01:59 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_calibration"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/calibration"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_auto_dac" />
|
|
|
|
|
|
2024-01-09 18:48:47 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_deviceProvision"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/deviceProvision"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_calibration" />
|
2024-01-16 11:01:42 +05:30
|
|
|
|
2024-01-05 14:40:48 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_deviceInfo"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/deviceinfo"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_calibration" />
|
2024-01-09 18:48:47 +05:30
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|