You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			179 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			179 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			XML
		
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<org.thoughtcrime.securesms.ConversationListItem
 | 
						|
        xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
        xmlns:app="http://schemas.android.com/apk/res-auto"
 | 
						|
        xmlns:tools="http://schemas.android.com/tools"
 | 
						|
        android:background="?attr/conversation_list_item_background"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:focusable="true"
 | 
						|
        android:nextFocusRight="@+id/fab"
 | 
						|
        android:nextFocusLeft="@+id/container"
 | 
						|
        android:layout_height="72dp"
 | 
						|
        android:paddingLeft="16dp"
 | 
						|
        android:paddingRight="16dp">
 | 
						|
 | 
						|
    <FrameLayout
 | 
						|
        android:id="@+id/avatar_container"
 | 
						|
        android:layout_width="54dp"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_alignParentLeft="true"
 | 
						|
        android:layout_alignParentStart="true"
 | 
						|
        android:layout_centerVertical="true"
 | 
						|
        android:layout_marginRight="6dp"
 | 
						|
        android:layout_marginEnd="6dp">
 | 
						|
 | 
						|
        <org.thoughtcrime.securesms.components.AvatarImageView
 | 
						|
            android:id="@+id/contact_photo_image"
 | 
						|
            android:foreground="@drawable/contact_photo_background"
 | 
						|
            android:layout_width="48dp"
 | 
						|
            android:layout_height="48dp"
 | 
						|
            tools:src="@drawable/ic_contact_picture"
 | 
						|
            android:contentDescription="@string/conversation_list_item_view__contact_photo_image" />
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:id="@+id/unread_indicator"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_gravity="right|end|top"
 | 
						|
            style="@style/Signal.Text.Caption"
 | 
						|
            android:fontFamily="sans-serif-medium"
 | 
						|
            android:minWidth="@dimen/unread_count_bubble_diameter"
 | 
						|
            android:padding="5sp"
 | 
						|
            android:background="?conversation_list_item_unread_background"
 | 
						|
            android:textColor="@color/core_white"
 | 
						|
            android:gravity="center"
 | 
						|
            tools:text="1"/>
 | 
						|
 | 
						|
    </FrameLayout>
 | 
						|
 | 
						|
    <RelativeLayout android:layout_width="match_parent"
 | 
						|
                  android:layout_height="wrap_content"
 | 
						|
                  android:layout_marginLeft="4dp"
 | 
						|
                  android:layout_marginStart="4dp"
 | 
						|
                  android:layout_centerVertical="true"
 | 
						|
                  android:layout_toRightOf="@id/avatar_container"
 | 
						|
                  android:layout_toEndOf="@id/avatar_container"
 | 
						|
                  android:weightSum="1"
 | 
						|
                  android:orientation="horizontal">
 | 
						|
 | 
						|
        <org.thoughtcrime.securesms.components.FromTextView
 | 
						|
                  android:id="@+id/from"
 | 
						|
                  android:layout_width="match_parent"
 | 
						|
                  android:layout_height="wrap_content"
 | 
						|
                  android:layout_alignParentTop="true"
 | 
						|
                  android:layout_alignParentLeft="true"
 | 
						|
                  android:layout_alignParentStart="true"
 | 
						|
                  android:layout_toLeftOf="@+id/thumbnail"
 | 
						|
                  android:layout_toStartOf="@+id/thumbnail"
 | 
						|
                  style="@style/Signal.Text.Body"
 | 
						|
                  android:fontFamily="sans-serif-medium"
 | 
						|
                  android:textColor="?attr/conversation_list_item_contact_color"
 | 
						|
                  android:maxLines="1"
 | 
						|
                  tools:text="Jules Bonnot"
 | 
						|
                  android:ellipsize="end"
 | 
						|
                  android:layout_marginBottom="2dp"
 | 
						|
                  android:drawablePadding="5dp"/>
 | 
						|
 | 
						|
        <org.thoughtcrime.securesms.components.AlertView
 | 
						|
                android:id="@+id/indicators_parent"
 | 
						|
                android:layout_width="18dp"
 | 
						|
                android:layout_height="18dp"
 | 
						|
                android:paddingTop="2dp"
 | 
						|
                android:layout_marginRight="2dp"
 | 
						|
                android:layout_marginEnd="2dp"
 | 
						|
                android:layout_alignParentLeft="true"
 | 
						|
                android:layout_alignParentStart="true"
 | 
						|
                android:layout_below="@id/from"
 | 
						|
                app:useSmallIcon="true"
 | 
						|
                android:visibility="gone"
 | 
						|
                tools:visibility="visible"/>
 | 
						|
 | 
						|
        <org.thoughtcrime.securesms.components.emoji.EmojiTextView
 | 
						|
                android:id="@+id/subject"
 | 
						|
                android:layout_width="match_parent"
 | 
						|
                android:layout_height="wrap_content"
 | 
						|
                android:layout_below="@id/from"
 | 
						|
                android:layout_toRightOf="@id/indicators_parent"
 | 
						|
                android:layout_toEndOf="@id/indicators_parent"
 | 
						|
                android:layout_toLeftOf="@+id/status"
 | 
						|
                android:layout_toStartOf="@+id/status"
 | 
						|
                android:paddingRight="1dp"
 | 
						|
                style="@style/Signal.Text.Preview"
 | 
						|
                android:textColor="?attr/conversation_list_item_subject_color"
 | 
						|
                android:maxLines="1"
 | 
						|
                tools:text="Wheels arrive at 3pm flat. This is a somewhat longer message."
 | 
						|
                android:ellipsize="end" />
 | 
						|
 | 
						|
        <org.thoughtcrime.securesms.components.ThumbnailView
 | 
						|
                android:id="@+id/thumbnail"
 | 
						|
                android:layout_width="40dp"
 | 
						|
                android:layout_height="40dp"
 | 
						|
                android:layout_gravity="center_horizontal"
 | 
						|
                android:layout_marginRight="5dp"
 | 
						|
                android:layout_marginLeft="5dp"
 | 
						|
                android:layout_toLeftOf="@+id/date"
 | 
						|
                android:layout_toStartOf="@+id/date"
 | 
						|
                android:layout_alignParentTop="true"
 | 
						|
                android:layout_marginTop="5dp"
 | 
						|
                android:contentDescription="@string/conversation_activity__attachment_thumbnail"
 | 
						|
                android:visibility="gone"
 | 
						|
                tools:src="@drawable/ic_video_light"
 | 
						|
                tools:visibility="visible" />
 | 
						|
 | 
						|
        <TextView android:id="@id/date"
 | 
						|
                  android:layout_marginLeft="3dp"
 | 
						|
                  android:layout_marginStart="3dp"
 | 
						|
                  android:layout_height="wrap_content"
 | 
						|
                  android:layout_width="wrap_content"
 | 
						|
                  android:layout_alignParentRight="true"
 | 
						|
                  android:layout_alignParentEnd="true"
 | 
						|
                  android:layout_alignBaseline="@+id/from"
 | 
						|
                  android:layout_above="@id/subject"
 | 
						|
                  style="@style/Signal.Text.Caption"
 | 
						|
                  android:textColor="?attr/conversation_list_item_date_color"
 | 
						|
                  android:textAllCaps="true"
 | 
						|
                  tools:text="30 mins"
 | 
						|
                  android:singleLine="true"/>
 | 
						|
 | 
						|
        <TextView android:id="@+id/archived"
 | 
						|
                  android:layout_width="wrap_content"
 | 
						|
                  android:layout_height="wrap_content"
 | 
						|
                  android:layout_below="@id/date"
 | 
						|
                  android:layout_alignParentRight="true"
 | 
						|
                  android:layout_alignParentEnd="true"
 | 
						|
                  android:layout_alignBaseline="@id/subject"
 | 
						|
                  android:layout_marginLeft="5dp"
 | 
						|
                  android:layout_marginStart="5dp"
 | 
						|
                  android:paddingLeft="6dp"
 | 
						|
                  android:paddingRight="6dp"
 | 
						|
                  android:paddingTop="2dp"
 | 
						|
                  android:paddingBottom="2dp"
 | 
						|
                  style="@style/Signal.Text.Caption"
 | 
						|
                  android:text="@string/conversation_list_item_view__archived"
 | 
						|
                  android:textColor="@color/core_white"
 | 
						|
                  android:textAllCaps="true"
 | 
						|
                  android:background="@drawable/archived_indicator_background" />
 | 
						|
 | 
						|
 | 
						|
        <FrameLayout android:id="@+id/status"
 | 
						|
                     android:layout_width="wrap_content"
 | 
						|
                     android:layout_height="wrap_content"
 | 
						|
                     android:layout_marginTop="4dp"
 | 
						|
                     android:layout_below="@id/date"
 | 
						|
                     android:layout_toLeftOf="@id/archived"
 | 
						|
                     android:layout_toStartOf="@id/archived"
 | 
						|
                     android:layout_alignWithParentIfMissing="true">
 | 
						|
 | 
						|
            <org.thoughtcrime.securesms.components.DeliveryStatusView
 | 
						|
                    android:id="@+id/delivery_status"
 | 
						|
                    android:layout_width="wrap_content"
 | 
						|
                    android:layout_height="wrap_content"
 | 
						|
                    android:layout_gravity="center_vertical"
 | 
						|
                    app:iconColor="?attr/conversation_list_item_delivery_icon_color"/>
 | 
						|
 | 
						|
        </FrameLayout>
 | 
						|
 | 
						|
    </RelativeLayout>
 | 
						|
 | 
						|
</org.thoughtcrime.securesms.ConversationListItem>
 |