2015-06-09 14:37:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.preferences.BlockedContactListItem
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingEnd="25dip">
|
2015-06-09 14:37:20 +00:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
|
|
android:id="@+id/contact_photo_image"
|
|
|
|
android:layout_width="@dimen/contact_selection_photo_size"
|
|
|
|
android:layout_height="@dimen/contact_selection_photo_size"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentStart="true"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:layout_centerVertical="true"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginStart="10dp"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:cropToPadding="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:contentDescription="@string/SingleContactSelectionActivity_contact_photo" />
|
|
|
|
|
|
|
|
<TextView android:id="@+id/name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentTop="true"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginStart="14dip"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_toEndOf="@id/contact_photo_image"
|
|
|
|
android:gravity="center_vertical|start"
|
2015-06-09 14:37:20 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.preferences.BlockedContactListItem>
|