1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-28 16:29:38 +00:00
Files
ownCloud-SMS-App/src/main/res/layout/nav_header_main.xml
T
Niedermann IT-Dienstleistungen 9e597fb58c Adaptive icons and drawer adjustments (#188)
* Added adaptive icon

* Adjust drawer header to Notes app
2018-04-10 22:51:03 +02:00

30 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/side_nav_bar"
android:gravity="bottom"
android:orientation="horizontal"
android:padding="10dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:paddingTop="24dp"
android:src="@mipmap/ic_launcher" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="12dp"
android:paddingStart="12dp"
android:paddingTop="24dp"
android:text="@string/app_name"
android:textAppearance="@style/TextAppearance.AppCompat.Title" />
</LinearLayout>