1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <RelativeLayout
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content"
8 android:background="?selectableItemBackground"
9 android:paddingLeft="8dp"
10 android:paddingBottom="8dp"
11 android:paddingTop="8dp">
12
13 <com.google.android.material.imageview.ShapeableImageView
14 android:id="@+id/account_image"
15 android:layout_width="48dp"
16 android:layout_height="48dp"
17 android:layout_alignParentLeft="true"
18 android:contentDescription="@string/account_image_description"
19 app:strokeColor="@color/custom_theme_accent"
20 app:shapeAppearance="@style/ShapeAppearanceOverlay.Photo" />
21
22 <LinearLayout
23 android:layout_width="fill_parent"
24 android:layout_height="wrap_content"
25 android:layout_centerVertical="true"
26 android:layout_toEndOf="@+id/account_image"
27 android:layout_toRightOf="@+id/account_image"
28 android:orientation="vertical"
29 android:paddingLeft="@dimen/avatar_item_distance"
30 android:layout_toLeftOf="@+id/tgl_account_status"
31 android:layout_toStartOf="@+id/tgl_account_status">
32
33 <TextView
34 android:id="@+id/account_jid"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:scrollHorizontally="false"
38 android:singleLine="true"
39 android:textAppearance="@style/TextAppearance.Conversations.Subhead" />
40
41 <TextView
42 android:id="@+id/account_status"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:text="@string/account_status_unknown"
46 android:textAppearance="@style/TextAppearance.Conversations.Body2" />
47 </LinearLayout>
48
49 <androidx.appcompat.widget.SwitchCompat
50 android:id="@+id/tgl_account_status"
51 android:layout_width="wrap_content"
52 android:layout_height="wrap_content"
53 android:layout_alignParentRight="true"
54 android:layout_centerVertical="true"
55 android:padding="16dp"
56 android:focusable="false" />
57
58 </RelativeLayout>
59</layout>