aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/drawer_header.xml
blob: 00441b73d6a3ae8a0d8e7445ca96d93ad4955e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="match_parent"
	android:layout_height="178dp"
	android:orientation="vertical"
	android:weightSum="1">

	<LinearLayout
		android:layout_width="match_parent"
		android:layout_height="56dp"
		android:orientation="vertical"
		android:layout_alignParentBottom="true"
		android:layout_alignParentLeft="true"
		android:layout_alignParentStart="true">

		<TextView
			android:id="@+id/header_server_name"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_marginLeft="16dp"
			android:textColor="?android:textColorPrimary"
			android:textSize="14sp"
			android:textStyle="bold"/>

		<TextView
			android:id="@+id/header_user_name"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_marginLeft="16dp"
			android:layout_marginTop="5dp"
			android:textColor="?android:textColorSecondary"
			android:textSize="14sp"
			android:textStyle="normal"/>
	</LinearLayout>

	<de.hdodenhof.circleimageview.CircleImageView
		android:id="@+id/header_user_avatar"
		android:layout_width="70dp"
		android:layout_height="70dp"
		android:layout_marginLeft="16dp"
		android:layout_marginTop="38dp"/>
</RelativeLayout>