2023-12-09 03:32:42 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2023-12-10 13:54:08 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-12-09 03:32:42 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2023-12-09 04:44:42 +00:00
|
|
|
tools:context=".DebugMenuFragment">
|
2023-12-09 03:32:42 +00:00
|
|
|
|
2023-12-10 13:54:08 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2023-12-09 03:32:42 +00:00
|
|
|
android:layout_width="match_parent"
|
2023-12-10 08:12:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2023-12-10 13:54:08 +00:00
|
|
|
android:text="Debug Menu"
|
|
|
|
android:textSize="36sp"
|
2023-12-11 06:10:53 +00:00
|
|
|
android:padding="16dp" />
|
2023-12-09 03:32:42 +00:00
|
|
|
|
2023-12-10 13:54:08 +00:00
|
|
|
<ScrollView
|
2023-12-10 08:12:46 +00:00
|
|
|
android:layout_width="match_parent"
|
2023-12-10 13:54:08 +00:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<!-- Call Events -->
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Call Debug Events"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:padding="8dp" />
|
|
|
|
<!-- android:textColor="@color/material_dynamic_primary10" />-->
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_debug_menu_scan"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Start scan action"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginTop="8dp" />
|
|
|
|
|
|
|
|
<!-- Padding -->
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="16dp" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2023-12-11 06:36:05 +00:00
|
|
|
android:padding="8dp"
|
|
|
|
android:text="SharedPref"
|
|
|
|
android:textSize="24sp" />
|
2023-12-10 13:54:08 +00:00
|
|
|
<!-- android:textColor="@color/material_dynamic_primary10" />-->
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_debug_menu_clear_pref"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Clear Preferences"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginTop="8dp" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
2023-12-10 13:57:11 +00:00
|
|
|
android:id="@+id/btn_debug_menu_shared_pref_editor"
|
2023-12-10 13:54:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2023-12-10 13:57:11 +00:00
|
|
|
android:text="Shared Preferences Editor"
|
2023-12-10 13:54:08 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginTop="8dp" />
|
2023-12-11 06:36:05 +00:00
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:text="SharedPref"
|
|
|
|
android:textSize="24sp" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_debug_menu_call_play_ground"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:text="Playground" />
|
2023-12-10 13:54:08 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2023-12-10 08:12:46 +00:00
|
|
|
|
2023-12-09 03:32:42 +00:00
|
|
|
</LinearLayout>
|