2016-03-08 21:22:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-10 00:49:14 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/navigation_drawer_header_height"
|
|
|
|
android:gravity="bottom"
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark">
|
2016-03-08 21:22:45 +01:00
|
|
|
|
2020-01-10 00:49:14 +01:00
|
|
|
<FrameLayout
|
2016-03-08 21:22:45 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:layout_height="match_parent"
|
2020-01-10 00:49:14 +01:00
|
|
|
android:background="@color/colorPrimary" />
|
2016-03-08 21:22:45 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_height="64dp"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginTop="@dimen/navigation_drawer_header_margin"
|
2016-03-08 21:22:45 +01:00
|
|
|
android:scaleType="centerCrop"
|
2020-01-10 00:49:14 +01:00
|
|
|
android:src="@drawable/tachiyomi_circle" />
|
2016-03-08 21:22:45 +01:00
|
|
|
|
2020-01-10 00:49:14 +01:00
|
|
|
</FrameLayout>
|