summaryrefslogtreecommitdiff
path: root/GymLog/src/main/res/layout/fragment_activity.xml
blob: 5ae1af58a596e52a2c4af650d227de710ad1ff57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:gravity="center_horizontal"
                android:background="@android:color/black" >

    <Button
        android:id="@+id/summary"
        android:layout_above="@+id/name"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="false"
        android:gravity="center_vertical"
        android:textSize="40dp"
        android:text="0"
        android:textColor="@android:color/holo_blue_dark"
        android:background="@android:color/black" />
    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:gravity="center_horizontal"
        android:textSize="30dp"
        android:text="Activity Name"
        android:textColor="@android:color/holo_blue_dark" />
</RelativeLayout>