blob: 7f928ab593312267156e5f27b16ae278ce65bafe (
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
|
<?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="match_parent"
android:padding="8dp">
<ImageView
android:id="@+id/bli_photo"
app:srcCompat="@drawable/ic_launcher_background"
android:layout_width="40dp"
android:layout_height="40dp" />
<TextView
android:id="@+id/bli_name"
android:textSize="20sp"
android:layout_marginTop="6dp"
android:maxLines="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/bli_photo"
android:layout_toEndOf="@+id/bli_photo"
android:layout_marginLeft="12dp"
android:layout_marginStart="12dp" />
</RelativeLayout>
|