blob: 41a03af35662d03a349d43c250d380ca9b8d3233 [file] [log] [blame]
alisiona4325152013-04-19 11:10:03 -04001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -04003 android:layout_width="match_parent"
Adrien Béraud87aa42a2015-12-16 16:13:36 -05004 android:layout_height="wrap_content"
Adrien Béraud433a8592015-06-17 16:25:44 -04005 android:padding="16dp">
alisiona4325152013-04-19 11:10:03 -04006
7 <TextView
Alexandre Lisionfb0985b2013-09-27 16:23:44 -04008 android:id="@+id/account_alias"
9 android:layout_width="wrap_content"
10 android:layout_height="wrap_content"
Adrien Béraudabd338e2015-12-12 01:57:31 -050011 android:layout_alignParentLeft="false"
12 android:layout_alignParentStart="true"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -040013 android:layout_alignParentTop="true"
Adrien Béraudabd338e2015-12-12 01:57:31 -050014 android:textAppearance="@style/ListPrimary" />
Adrien Béraud433a8592015-06-17 16:25:44 -040015
16 <TextView
Alexandre Lisionfb0985b2013-09-27 16:23:44 -040017 android:id="@+id/account_host"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
Adrien Béraudabd338e2015-12-12 01:57:31 -050020 android:layout_alignParentLeft="false"
21 android:layout_alignParentStart="true"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -040022 android:layout_below="@+id/account_alias"
Adrien Béraudabd338e2015-12-12 01:57:31 -050023 android:layout_toLeftOf="@+id/error_indicator"
24 android:layout_toStartOf="@+id/error_indicator"
Adrien Béraudb179bab2015-10-08 12:04:22 -040025 android:ellipsize="middle"
26 android:singleLine="true"
Adrien Béraudabd338e2015-12-12 01:57:31 -050027 android:textAppearance="@style/ListSecondary" />
Alexandre Lisiondd6623b2013-12-02 16:23:40 -050028
29 <ImageView
Adrien Béraud433a8592015-06-17 16:25:44 -040030 android:id="@+id/error_indicator"
alisiona4325152013-04-19 11:10:03 -040031 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
Adrien Béraudabd338e2015-12-12 01:57:31 -050033 android:layout_alignParentEnd="true"
34 android:layout_alignParentRight="false"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -040035 android:layout_centerVertical="true"
Adrien Béraud87aa42a2015-12-16 16:13:36 -050036 android:layout_marginLeft="16dp"
Adrien Béraudabd338e2015-12-12 01:57:31 -050037 android:layout_marginStart="16dp"
Alexandre Lisionfb0985b2013-09-27 16:23:44 -040038 android:clickable="false"
Alexandre Lisiondd6623b2013-12-02 16:23:40 -050039 android:focusable="false"
Adrien Béraudb179bab2015-10-08 12:04:22 -040040 android:focusableInTouchMode="false"
Adrien Béraudabd338e2015-12-12 01:57:31 -050041 android:src="@drawable/ic_error_white_24dp"
42 android:tint="@android:color/holo_red_light" />
alisiona4325152013-04-19 11:10:03 -040043
44</RelativeLayout>