2014-02-28 06:44:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.thoughtcrime.securesms.ShareListItem
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-23 21:58:08 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2014-02-28 06:44:02 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2015-05-04 18:36:18 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
2014-02-28 06:44:02 +00:00
|
|
|
android:id="@+id/contact_photo_image"
|
|
|
|
android:foreground="@drawable/contact_photo_background"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_marginBottom="3dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:cropToPadding="true"
|
|
|
|
android:contentDescription="@string/SingleContactSelectionActivity_contact_photo" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="4dip"
|
|
|
|
android:layout_marginLeft="4dip"
|
|
|
|
android:layout_marginRight="8dip"
|
|
|
|
android:layout_marginBottom="4dip"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@id/contact_photo_image"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-05-04 18:36:18 +00:00
|
|
|
<org.thoughtcrime.securesms.components.FromTextView
|
|
|
|
android:id="@+id/from"
|
2014-02-28 06:44:02 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?attr/conversation_list_item_contact_color"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:gravity="bottom"
|
|
|
|
android:ellipsize="marquee" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</org.thoughtcrime.securesms.ShareListItem>
|