Files
android-mental-arithmetic/app/src/main/res/layout/fragment_summary.xml
Sebastian Seedorf d9d598b021 Initial commit
2020-12-06 20:17:19 +01:00

27 lines
1.1 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"
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>