blob: 32b2e2011da2bbcefd72c74a0b5bc33fc9555d1b [file] [log] [blame]
Alexandre Lision3ccccf02013-10-07 14:10:46 -04001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lision4cf78702013-10-16 13:43:23 -04003 android:id="@id/drag_handle"
Alexandre Lision3ccccf02013-10-07 14:10:46 -04004 android:layout_width="match_parent"
5 android:layout_height="wrap_content"
6 android:padding="4dp" >
7
8 <TextView
9 android:id="@+id/account_alias"
10 android:layout_width="wrap_content"
11 android:layout_height="wrap_content"
12 android:layout_alignParentLeft="true"
13 android:layout_alignParentTop="true"
14 android:layout_marginBottom="4dp"
15 android:layout_marginLeft="4dp"
16 android:textAppearance="?android:attr/textAppearanceLarge" />
17
18 <TextView
19 android:id="@+id/account_host"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:layout_alignParentLeft="true"
23 android:layout_below="@+id/account_alias"
24 android:layout_marginLeft="4dp"
25 android:textAppearance="?android:attr/textAppearanceSmall" />
26
27 <CheckBox
28 android:id="@+id/account_checked"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:layout_alignParentRight="true"
32 android:focusable="false"
33 android:layout_centerVertical="true" />
34
35</RelativeLayout>