mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
|
<?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"
|
||
|
android:paddingRight="25dip">
|
||
|
|
||
|
<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"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:layout_marginLeft="10dp"
|
||
|
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"
|
||
|
android:layout_marginLeft="14dip"
|
||
|
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
||
|
android:singleLine="true"
|
||
|
android:ellipsize="marquee"
|
||
|
android:layout_toRightOf="@id/contact_photo_image"
|
||
|
android:gravity="center_vertical|left"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
|
||
|
</org.thoughtcrime.securesms.preferences.BlockedContactListItem>
|