mirror of
https://github.com/etesync/android
synced 2025-03-12 21:46:08 +00:00
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!--
|
||
~ Copyright © 2013 – 2016 Ricki Hirner (bitfire web engineering).
|
||
~ All rights reserved. This program and the accompanying materials
|
||
~ are made available under the terms of the GNU Public License v3.0
|
||
~ which accompanies this distribution, and is available at
|
||
~ http://www.gnu.org/licenses/gpl.html
|
||
-->
|
||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
xmlns:tools="http://schemas.android.com/tools"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:background="@color/grey700"
|
||
android:gravity="bottom"
|
||
android:orientation="vertical"
|
||
android:padding="@dimen/activity_margin"
|
||
android:theme="@style/ThemeOverlay.AppCompat.Dark">
|
||
|
||
<ImageView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="24dp"
|
||
android:src="@mipmap/ic_launcher"
|
||
tools:ignore="ContentDescription"/>
|
||
|
||
<TextView
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="@dimen/nav_header_vertical_spacing"
|
||
android:text="@string/app_name"
|
||
android:textAppearance="@style/TextAppearance.AppCompat.Body1"/>
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="@string/navigation_drawer_subtitle"/>
|
||
|
||
</LinearLayout>
|