-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_item.xml
38 lines (34 loc) · 1.3 KB
/
list_item.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
<?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">
<ImageView
android:id="@+id/imageView"
android:layout_width="56dp"
android:layout_height="51dp"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
app:srcCompat="@android:drawable/sym_def_app_icon" />
<TextView
android:id="@+id/textView"
android:layout_width="266dp"
android:layout_height="62dp"
android:layout_marginTop="20dp"
android:layout_toRightOf="@id/imageView"
android:text="TextView"
android:textStyle="bold" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_marginTop="45dp"
android:layout_toRightOf="@id/imageView"
android:text="TextView"
android:textSize="10dp" />
</RelativeLayout>