2023-05-30 08:48:59 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-03-18 13:16:11 +05:30
|
|
|
<!--
|
|
|
|
|
~ // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
|
|
|
~ // Notice: All information contained herein is, and remains
|
|
|
|
|
~ // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
|
|
|
~ // if any. The intellectual and technical concepts contained
|
|
|
|
|
~ // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
|
|
|
~ // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
|
|
|
~ // patents in process, and are protected by trade secret or copyright law.
|
|
|
|
|
~ // Dissemination of this information or reproduction of this material
|
|
|
|
|
~ // is strictly forbidden unless prior written permission is obtained
|
|
|
|
|
~ // from ShanMukha Innovations Pvt. Ltd.
|
|
|
|
|
-->
|
|
|
|
|
|
2024-02-13 12:47:57 +05:30
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-05-30 08:48:59 +05:30
|
|
|
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"
|
2024-02-13 12:47:57 +05:30
|
|
|
android:fillViewport="true">
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-01-17 17:27:50 +05:30
|
|
|
tools:context="com.example.hpostesting.presentation.main_base.PanelFragment">
|
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"
|
2024-01-17 13:38:41 +05:30
|
|
|
android:text="Login ID"
|
2024-01-05 14:40:48 +05:30
|
|
|
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"
|
2024-01-17 13:38:41 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/tv_subtitle4" />
|
2023-09-22 11:40:17 +05:30
|
|
|
|
|
|
|
|
|
2025-05-15 12:57:53 +05:30
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btn_rnd"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="R and D"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_submit" />
|
|
|
|
|
|
|
|
|
|
<Button
|
2023-10-12 17:20:37 +05:30
|
|
|
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"
|
2025-05-15 12:57:53 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_rnd" />
|
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"
|
2024-06-05 16:22:12 +05:30
|
|
|
android:text="@string/calibrate_device"
|
2024-01-04 01:11:30 +05:30
|
|
|
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"
|
2024-02-12 17:56:37 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_auto_dac" />
|
2024-02-13 12:47:57 +05:30
|
|
|
|
2024-03-22 15:47:47 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_usb_terminal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/usb_terminal"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_calibration" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
2024-01-05 14:40:48 +05:30
|
|
|
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"
|
2024-03-22 15:47:47 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_usb_terminal" />
|
2024-01-09 18:48:47 +05:30
|
|
|
|
2024-02-13 12:47:57 +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="visible"
|
|
|
|
|
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_deviceInfo" />
|
2024-02-08 15:30:51 +05:30
|
|
|
|
2024-06-05 16:22:12 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_reset_password"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/reset_password_for_this_device"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_deviceProvision" />
|
2025-05-15 12:57:53 +05:30
|
|
|
|
2024-07-08 14:29:10 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_update_values"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
2025-05-15 12:57:53 +05:30
|
|
|
android:text="Update valueLs"
|
2024-07-08 14:29:10 +05:30
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-09-11 17:11:53 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_reset_password" />
|
2025-05-15 12:57:53 +05:30
|
|
|
|
2024-02-08 15:30:51 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_firefox"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/Firefox"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-06-05 16:22:12 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_reset_password" />
|
2024-02-08 15:30:51 +05:30
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/btn_files"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:text="@string/Files"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
app:cornerRadius="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/btn_firefox" />
|
|
|
|
|
|
2024-02-13 12:47:57 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
</ScrollView>
|