2015-01-13 21:55:53 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-02-03 16:05:18 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-13 21:55:53 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-01-14 14:02:51 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-02-03 16:05:18 +01:00
|
|
|
android:id="@+id/header"
|
2015-01-13 21:55:53 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-02-03 16:05:18 +01:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/statusBar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/statusMargin"
|
|
|
|
|
android:background="?attr/colorPrimary" />
|
|
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_below="@+id/statusBar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
|
android:elevation="4dp"
|
|
|
|
|
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
|
|
|
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|