Files
postgrachelor/app/src/main/res/layout/fragment_question_end.xml
2017-03-26 14:43:59 +02:00

34 lines
1.2 KiB
XML

<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="de.hwr_berlin.it14.postgrachelor.QuestionEndFragment"
android:orientation="vertical"
android:gravity="center">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="40dp"
android:textSize="40sp"
android:text="@string/test_completed" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="40dp"
android:textSize="80sp"
android:text="@string/_1337"
android:maxLines="1"
android:textColor="@color/colorPrimaryDark"
android:textStyle="bold"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:textColor="@android:color/white"
android:text="@string/return_btn"/>
</LinearLayout>