mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-02-27 20:43:15 +00:00
122 lines
4.8 KiB
XML
122 lines
4.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".DebugMenuFragment">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Debug Menu"
|
|
android:textSize="36sp"
|
|
android:padding="16dp" />
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
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"
|
|
android:padding="8dp"
|
|
android:text="SharedPref"
|
|
android:textSize="24sp" />
|
|
<!-- 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
|
|
android:id="@+id/btn_debug_menu_shared_pref_editor"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Shared Preferences Editor"
|
|
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"
|
|
android:padding="8dp"
|
|
android:text="PlayGround"
|
|
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" />
|
|
|
|
<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"
|
|
android:padding="8dp"
|
|
android:text="FileDebug"
|
|
android:textSize="24sp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btn_debug_menu_get_external_path"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:text="Get External Path" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
</LinearLayout> |