szkolnyplus/app/src/main/res/layout/card_home_debug.xml

89 lines
3.4 KiB
XML
Raw Normal View History

2019-12-22 15:36:57 +01:00
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) Kuba Szczodrzyński 2019-12-22.
-->
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:layout_margin="8dp"
tools:ignore="HardcodedText">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Warning! Do not move this debug card, or you will probably confuse the internal card ID list, thus resulting in a weird and (maybe)non-undoable card order."/>
<com.google.android.material.button.MaterialButton
android:id="@+id/getLogs"
style="@style/Widget.MaterialComponents.Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Save Debug Logs" />
<com.google.android.material.button.MaterialButton
android:id="@+id/librusCaptchaButton"
style="@style/Widget.MaterialComponents.Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Librus Captcha" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Network"
android:textSize="16sp"/>
2019-12-22 15:36:57 +01:00
<com.google.android.material.button.MaterialButton
android:id="@+id/runChucker"
style="@style/Widget.MaterialComponents.Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Launch Chucker" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Messages"
android:textSize="16sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/composeNewButton"
style="@style/Widget.MaterialComponents.Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Compose 2" />
<com.google.android.material.button.MaterialButton
android:id="@+id/migrate71"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
2019-12-22 15:36:57 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Migration 71" />
2019-12-22 15:36:57 +01:00
<com.google.android.material.button.MaterialButton
android:id="@+id/syncReceivers"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Sync receivers" />
2019-12-22 15:36:57 +01:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Sync"
android:textSize="16sp"/>
2019-12-22 15:36:57 +01:00
<com.google.android.material.button.MaterialButton
android:id="@+id/pruneWorkButton"
style="@style/Widget.MaterialComponents.Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Prune finished work" />
</LinearLayout>
</layout>