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