mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="192dp"
|
||
|
android:gravity="bottom"
|
||
|
android:theme="@style/ThemeOverlay.AppCompat.Dark">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:background="@drawable/header" />
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_marginLeft="16dp"
|
||
|
android:layout_marginTop="@dimen/navigation_drawer_header_margin"
|
||
|
android:layout_width="64dp"
|
||
|
android:layout_height="64dp"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:src="@drawable/test" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="52dp"
|
||
|
android:layout_gravity="left|bottom"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingBottom="8dp"
|
||
|
android:paddingLeft="16dp"
|
||
|
android:paddingRight="16dp">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:gravity="center_vertical"
|
||
|
android:text="Desarrollador Android"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:gravity="center_vertical"
|
||
|
android:text="thedahnark@gmail.com"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</FrameLayout>
|