alpha 0.0.1
[DHBWCampusApp.git] / app / src / main / res / layout / fragment_mensa.xml
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:app="http://schemas.android.com/apk/res-auto"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:orientation="vertical">
6
7     <ImageView
8         android:layout_width="match_parent"
9         android:layout_height="100dp"
10         android:id="@+id/imageView8"
11         android:src="@drawable/dhbw_mensa"
12         android:scaleType="center"
13         android:background="#000000" />
14
15     <android.support.design.widget.AppBarLayout
16         android:layout_width="match_parent"
17         android:layout_height="wrap_content"
18         android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
19
20         <android.support.design.widget.TabLayout
21             android:id="@+id/tabs"
22             android:layout_width="match_parent"
23             android:layout_height="wrap_content"
24             app:tabMode="scrollable"
25             />
26     </android.support.design.widget.AppBarLayout>
27
28     <android.support.v4.view.ViewPager
29         android:id="@+id/viewpager"
30         android:layout_width="match_parent"
31         android:layout_height="match_parent"
32         app:layout_behavior="@string/appbar_scrolling_view_behavior"  />
33 </LinearLayout>