-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_row.xml
43 lines (38 loc) · 1.41 KB
/
list_row.xml
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
43
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp">
<ImageView
android:id="@+id/pic"
android:layout_width="66dp"
android:layout_height="70dp"
android:src="@drawable/default_photo" />
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Name"
android:textColor="#070707"
android:layout_marginLeft="100sp"
android:textSize="28sp"
android:textStyle="bold" />
<TextView
android:id="@+id/position"
android:layout_width="match_parent"
android:layout_marginLeft="100sp"
android:layout_height="wrap_content"
android:layout_below="@id/title"
android:text="Position"
android:textColor="#070707" />
<TextView
android:id="@+id/value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="false"
android:layout_marginLeft="320sp"
android:text="123"
android:textColor="#070707"
android:textSize="28sp" />
</RelativeLayout>