Initial commit

This commit is contained in:
Sebastian Seedorf
2020-12-06 20:17:19 +01:00
commit d9d598b021
83 changed files with 3527 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragments.SummaryFragment"
android:orientation="vertical">
<com.google.android.material.button.MaterialButton
android:id="@+id/retry"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/retry"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/exit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/to_main_menu"/>
<com.google.android.material.textview.MaterialTextView
android:id="@+id/time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/primary_text_light"
android:textSize="15sp"
android:textAlignment="center"/>
</LinearLayout>