-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrow_layout.xml
39 lines (31 loc) · 1.17 KB
/
row_layout.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
<?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="75dp">
<TextView
android:layout_width="120dp"
android:layout_height="match_parent"
android:id="@+id/tx_name"
android:layout_alignParentLeft="true"
android:text="asdasd"
android:gravity="center"
android:textAppearance="?android:textAppearanceLarge"
/>
<TextView
android:layout_width="120dp"
android:layout_height="match_parent"
android:id="@+id/tx_isLost"
android:layout_toRightOf="@id/tx_name"
android:text="asdasd"
android:gravity="center"
android:textAppearance="?android:textAppearanceLarge"
/>
<TextView
android:layout_width="120dp"
android:layout_height="match_parent"
android:id="@+id/tx_ringRequest"
android:layout_toRightOf="@+id/tx_isLost"
android:text="asdasd"
android:gravity="center"
android:textAppearance="?android:textAppearanceLarge"
/>
</RelativeLayout>