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

28 lines
974 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/lessonName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="36sp"
android:textStyle="bold"
tools:text="urządzenia techniki komputerowej" />
<TextView
android:id="@+id/timeLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="48sp"
tools:text="Zostało 2341 sekund" />
</LinearLayout>
</layout>