mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
b89c20ff40
We can do this now that our minSdk is 19.
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:paddingEnd="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_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="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_marginStart="14dip"
|
|
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:layout_toEndOf="@id/contact_photo_image"
|
|
android:gravity="center_vertical|start"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
</org.thoughtcrime.securesms.preferences.BlockedContactListItem>
|