/woloc/res/layout/main_activity.xml
XML | 72 lines | 60 code | 12 blank | 0 comment | 0 complexity | 008cfefa117c97c49de290c8837e5399 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:orientation="vertical">
6
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="wrap_content"
9 android:layout_height="wrap_content"
10 android:orientation="horizontal">
11
12 <TextView android:id="@+id/status"
13 android:layout_width="wrap_content"
14 android:layout_height="wrap_content"
15 android:textSize="50sp"
16 android:text="@string/empty_string"/>
17 </LinearLayout>
18
19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:orientation="horizontal" android:baselineAligned="false">
23
24 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:paddingRight="5sp"
28 android:orientation="vertical">
29
30 <TextView android:layout_width="wrap_content"
31 android:layout_height="wrap_content"
32 android:textSize="30sp"
33 android:text="@string/label_working_hours_today"/>
34
35 <TextView android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:textSize="30sp"
38 android:text="@string/label_working_hours_this_week"/>
39
40 <TextView android:layout_width="wrap_content"
41 android:layout_height="wrap_content"
42 android:textSize="30sp"
43 android:text="@string/label_working_hours_this_month"/>
44 </LinearLayout>
45
46 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
47 android:layout_weight="1"
48 android:layout_width="0dp"
49 android:layout_height="wrap_content"
50 android:orientation="vertical">
51
52 <TextView android:id="@+id/working_hours_today"
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:textSize="30sp"
56 android:text="@string/empty_string"/>
57
58 <TextView android:id="@+id/working_hours_this_week"
59 android:layout_width="wrap_content"
60 android:layout_height="wrap_content"
61 android:textSize="30sp"
62 android:text="@string/empty_string"/>
63
64 <TextView android:id="@+id/working_hours_this_month"
65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content"
67 android:textSize="30sp"
68 android:text="@string/empty_string"/>
69 </LinearLayout>
70
71 </LinearLayout>
72</LinearLayout>