1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="wrap_content"
5 android:padding="8dp"
6 android:background="?android:attr/activatedBackgroundIndicator">
7
8
9
10 <LinearLayout
11 android:layout_width="fill_parent"
12 android:layout_height="wrap_content"
13 android:layout_alignParentBottom="true"
14 android:layout_alignParentLeft="true"
15 android:layout_alignParentTop="true"
16 android:orientation="vertical">
17
18 <TextView
19 android:id="@+id/account_jid"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:text="inputmice@jabber.ccc.de"
23 android:textSize="20sp"
24 android:singleLine="true"
25 android:scrollHorizontally="false"/>
26
27 <LinearLayout
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:orientation="horizontal"
31 android:paddingTop="3dp">
32
33 <TextView
34 android:id="@+id/textView2"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:text="Status: "
38 android:textStyle="bold"
39 android:textSize="16sp" />
40
41 <TextView
42 android:id="@+id/account_status"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:textColor="#669900"
46 android:text="unknown"
47 android:textStyle="bold"
48 android:textSize="16sp"/>
49
50 </LinearLayout>
51
52 </LinearLayout>
53
54
55</RelativeLayout>