alpha 0.0.1
[DHBWCampusApp.git] / app / src / main / res / layout / fragment_vorlesungsplan_upcoming_day.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:card_view="http://schemas.android.com/apk/res-auto"
4     android:orientation="vertical" android:layout_width="match_parent"
5     android:layout_height="match_parent">
6
7     <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
8         android:id="@+id/card_upcomingday"
9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         android:layout_margin="8dp"
12         card_view:cardCornerRadius="5dp">
13
14         <RelativeLayout
15             android:layout_width="match_parent"
16             android:layout_height="match_parent">
17
18
19             <TextView
20                 android:layout_width="wrap_content"
21                 android:layout_height="wrap_content"
22                 android:text="{date}"
23                 android:id="@+id/cardDate" />
24
25             <LinearLayout
26                 android:layout_width="match_parent"
27                 android:layout_height="wrap_content"
28                 android:id="@+id/cardCourses"
29                 android:layout_below="@+id/cardDate"
30                 android:orientation="vertical" />
31         </RelativeLayout>
32     </android.support.v7.widget.CardView>
33
34
35 </LinearLayout>