alpha 0.0.1
[DHBWCampusApp.git] / app / src / main / res / layout / fragment_dashboard_timetable.xml
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:tools="http://schemas.android.com/tools"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     tools:context=".fragments.DashboardVorlesungsplan"
6     android:orientation="horizontal">
7
8     <!-- TODO: Update blank fragment layout -->
9     <RelativeLayout
10         android:layout_width="wrap_content"
11         android:layout_height="match_parent"
12         android:layout_weight="1">
13
14         <TextView
15             android:layout_width="wrap_content"
16             android:layout_height="wrap_content"
17             android:text="{date1}"
18             android:id="@+id/dateView1"
19             android:layout_alignParentTop="true"
20             android:layout_centerHorizontal="true"
21             android:textColor="@color/color_dhbw_darkred"
22             android:layout_marginTop="4dp" />
23
24         <ScrollView
25             android:layout_width="fill_parent"
26             android:layout_height="match_parent"
27             android:id="@+id/scrollView2"
28             android:layout_below="@+id/dateView1"
29             android:layout_centerHorizontal="true" >
30
31             <RelativeLayout
32                 android:layout_width="match_parent"
33                 android:layout_height="match_parent"
34                 android:id="@+id/date1Overview">
35
36
37             </RelativeLayout>
38         </ScrollView>
39
40     </RelativeLayout>
41
42     <RelativeLayout
43         android:layout_width="2px"
44         android:layout_height="match_parent"
45         android:background="@color/color_dhbw_darkred"
46         android:layout_marginTop="4dp"
47         android:layout_marginBottom="4dp"></RelativeLayout>
48
49     <RelativeLayout
50         android:layout_width="wrap_content"
51         android:layout_height="match_parent"
52         android:layout_weight="1" >
53
54         <TextView
55             android:layout_width="wrap_content"
56             android:layout_height="wrap_content"
57             android:text="{date2}"
58             android:id="@+id/dateView2"
59             android:layout_alignParentTop="true"
60             android:layout_centerHorizontal="true"
61             android:textColor="@color/color_dhbw_darkred"
62             android:layout_marginTop="4dp" />
63
64         <ScrollView
65             android:layout_width="fill_parent"
66             android:layout_height="match_parent"
67             android:id="@+id/scrollView3"
68             android:layout_below="@+id/dateView2"
69             android:layout_centerHorizontal="true" >
70
71             <RelativeLayout
72                 android:layout_width="match_parent"
73                 android:layout_height="match_parent"
74                 android:id="@+id/date2Overview" />
75         </ScrollView>
76
77     </RelativeLayout>
78 </LinearLayout>