anotherim/src/main/res/layout/account_row.xml

55 lines
2.2 KiB
XML
Raw Normal View History

2014-10-22 16:38:44 +00:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2015-07-21 00:21:34 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/activatedBackgroundIndicator"
android:paddingLeft="8dp"
android:paddingBottom="8dp"
android:paddingTop="8dp">
2014-10-22 16:38:44 +00:00
2015-07-21 00:21:34 +00:00
<com.makeramen.roundedimageview.RoundedImageView
2014-10-22 16:38:44 +00:00
android:id="@+id/account_image"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_alignParentLeft="true"
2015-07-21 00:21:34 +00:00
android:contentDescription="@string/account_image_description"
app:riv_corner_radius="2dp" />
2014-10-22 16:38:44 +00:00
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/account_image"
android:orientation="vertical"
android:paddingLeft="@dimen/avatar_item_distance"
android:layout_toLeftOf="@+id/tgl_account_status"
android:layout_toStartOf="@+id/tgl_account_status">
2014-10-22 16:38:44 +00:00
<TextView
android:id="@+id/account_jid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollHorizontally="false"
android:singleLine="true"
2018-03-31 10:16:56 +00:00
android:textAppearance="@style/TextAppearance.Conversations.Subhead"/>
2014-10-22 16:38:44 +00:00
<TextView
android:id="@+id/account_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/account_status_unknown"
2018-03-31 10:16:56 +00:00
android:textAppearance="@style/TextAppearance.Conversations.Body2"
/>
2014-10-22 16:38:44 +00:00
</LinearLayout>
2018-02-17 10:18:23 +00:00
<android.support.v7.widget.SwitchCompat
android:id="@+id/tgl_account_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
2015-07-18 17:38:52 +00:00
android:padding="16dp"
android:focusable="false"/>
2014-10-22 16:38:44 +00:00
</RelativeLayout>