Grundaufbau der App
[DHBWCampusApp.git] / app / src / main / res / layout / fragment_mensa_tagesplan_listitem.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="wrap_content"
5     android:padding="8dp">
6
7     <TextView
8         android:layout_width="wrap_content"
9         android:layout_height="wrap_content"
10         android:textAppearance="?android:attr/textAppearanceLarge"
11         android:text="{menuName}"
12         android:id="@+id/txtMenueName"
13         android:layout_alignParentTop="true"
14         android:layout_alignParentLeft="true"
15         android:layout_alignParentStart="true" />
16
17     <TextView
18         android:layout_width="wrap_content"
19         android:layout_height="wrap_content"
20         android:text="{name}"
21         android:id="@+id/txtName"
22         android:layout_below="@+id/txtMenueName"
23         android:layout_alignLeft="@+id/txtMenueName"
24         android:layout_alignStart="@+id/txtMenueName"
25         android:layout_marginLeft="30dp"
26         android:layout_marginStart="31dp"
27         android:layout_marginTop="8dp" />
28 </RelativeLayout>