2014-01-19 02:17:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-05-19 21:00:54 +00:00
|
|
|
<org.thoughtcrime.securesms.contacts.ContactSelectionListItem
|
2015-11-03 01:40:41 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:background="@drawable/conversation_list_item_background"
|
|
|
|
android:paddingLeft="48dp"
|
|
|
|
android:paddingRight="20dp">
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-06-23 22:10:50 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
|
|
android:id="@+id/contact_photo_image"
|
2015-11-03 01:40:41 +00:00
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
2015-06-23 22:10:50 +00:00
|
|
|
android:foreground="@drawable/contact_photo_background"
|
|
|
|
android:cropToPadding="true"
|
2015-11-03 01:40:41 +00:00
|
|
|
app:showBadge="true"
|
|
|
|
tools:src="@color/md_material_blue_600"
|
|
|
|
android:layout_marginRight="10dp"
|
2015-06-23 22:10:50 +00:00
|
|
|
android:contentDescription="@string/SingleContactSelectionActivity_contact_photo" />
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-11-03 01:40:41 +00:00
|
|
|
<LinearLayout android:layout_width="0dp"
|
2015-05-19 21:00:54 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-03 01:40:41 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical">
|
2015-05-19 21:00:54 +00:00
|
|
|
|
2015-11-03 01:40:41 +00:00
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textSize="16sp"
|
|
|
|
tools:text="Frieeeeeeedrich Nieeeeeeeeeetzsche" />
|
2015-05-19 21:00:54 +00:00
|
|
|
|
2015-11-03 01:40:41 +00:00
|
|
|
<LinearLayout android:id="@+id/number_container"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-11-03 01:40:41 +00:00
|
|
|
<TextView android:id="@+id/number"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
tools:text="+1 (555) 555-5555" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="10dip"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
tools:text="Mobile" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2014-03-18 06:25:09 +00:00
|
|
|
<CheckBox android:id="@+id/check_box"
|
2015-11-03 01:40:41 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:focusable="false"
|
|
|
|
android:clickable="false" />
|
2014-01-19 02:17:08 +00:00
|
|
|
|
2015-05-19 21:00:54 +00:00
|
|
|
</org.thoughtcrime.securesms.contacts.ContactSelectionListItem>
|