2016-06-02 13:58:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-11-04 23:28:57 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-10-13 16:56:31 +02:00
|
|
|
android:id="@+id/nav_drawer"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:layout_width="wrap_content"
|
2016-06-07 13:33:50 +02:00
|
|
|
android:layout_height="110dp"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:gravity="bottom"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark">
|
|
|
|
|
2016-10-14 01:26:56 +02:00
|
|
|
<!--
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:src="@drawable/header" />
|
|
|
|
-->
|
2016-06-02 13:58:09 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2016-08-10 17:28:54 +02:00
|
|
|
android:id="@+id/nav_profile_picture"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:layout_width="wrap_content"
|
2016-06-04 11:11:51 +02:00
|
|
|
android:layout_height="match_parent"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:layout_alignParentBottom="true"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:layout_alignParentEnd="true"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:layout_alignParentStart="true"
|
2016-06-04 11:11:51 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2016-06-07 13:33:50 +02:00
|
|
|
android:layout_marginTop="24dp"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="horizontal">
|
2016-06-02 13:58:09 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/navheader_user_image"
|
|
|
|
android:layout_width="@android:dimen/notification_large_icon_width"
|
|
|
|
android:layout_height="@android:dimen/notification_large_icon_height"
|
2016-06-04 11:11:51 +02:00
|
|
|
android:layout_gravity="center"
|
2016-06-07 13:33:50 +02:00
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin_half"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
2016-06-04 11:11:51 +02:00
|
|
|
android:scaleType="fitCenter"
|
2016-11-04 23:28:57 +01:00
|
|
|
android:src="@drawable/ic_launcher"
|
|
|
|
tools:ignore="ContentDescription" />
|
2016-06-02 13:58:09 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2016-06-04 11:11:51 +02:00
|
|
|
android:layout_height="match_parent"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingEnd="@dimen/activity_horizontal_margin_half"
|
|
|
|
android:paddingStart="@dimen/activity_horizontal_margin_half">
|
2016-06-02 13:58:09 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/navheader_title"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:layout_width="wrap_content"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:layout_height="wrap_content"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="1"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:scrollHorizontally="true"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/podselection__podupti_notice"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:layout_weight="1"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:paddingBottom="@dimen/activity_horizontal_margin"
|
2016-08-28 17:54:35 +02:00
|
|
|
android:scrollHorizontally="true"
|
2016-08-26 17:08:57 +02:00
|
|
|
android:text="@string/app_subtitle"
|
2016-06-02 13:58:09 +02:00
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|