2014-01-28 19:21:54 +01:00
|
|
|
<?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="wrap_content"
|
2014-07-31 15:09:34 +02:00
|
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
|
|
android:padding="8dp" >
|
2014-01-28 19:21:54 +01:00
|
|
|
|
2014-07-31 15:09:34 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/account_image"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:src="@drawable/ic_profile" >
|
|
|
|
</ImageView>
|
2014-01-28 19:21:54 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-31 15:09:34 +02:00
|
|
|
android:layout_toRightOf="@+id/account_image"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="8dp" >
|
2014-01-28 19:21:54 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-31 15:09:34 +02:00
|
|
|
android:scrollHorizontally="false"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:singleLine="true"
|
2014-07-31 15:09:34 +02:00
|
|
|
android:textColor="@color/primarytext"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:textSize="?attr/TextSizeHeadline" />
|
2014-01-28 19:21:54 +01:00
|
|
|
|
2014-07-31 15:09:34 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_status"
|
|
|
|
android:layout_width="wrap_content"
|
2014-01-28 19:21:54 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-07-31 15:09:34 +02:00
|
|
|
android:text="@string/account_status_unknown"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:textSize="?attr/TextSizeBody"
|
2014-07-31 15:09:34 +02:00
|
|
|
android:textColor="@color/secondarytext"
|
|
|
|
android:textStyle="bold"/>
|
2014-01-28 19:21:54 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-07-31 15:09:34 +02:00
|
|
|
</RelativeLayout>
|