72 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="fill_parent"
 | |
|     android:layout_height="wrap_content"
 | |
|     android:orientation="horizontal"
 | |
|     android:padding="8dp">
 | |
|  
 | |
| 
 | |
| 	<ImageView
 | |
|             android:id="@+id/conversation_image"
 | |
|             android:layout_width="56dp"
 | |
|             android:layout_height="56dp"
 | |
|             android:layout_alignParentLeft="true"/>
 | |
| 
 | |
| 	<RelativeLayout
 | |
| 	    android:layout_toRightOf="@+id/conversation_image"
 | |
| 	    android:layout_centerVertical="true"
 | |
| 	    android:layout_height="wrap_content"
 | |
| 	    android:layout_width="fill_parent"
 | |
| 	    android:paddingLeft="8dp">
 | |
| 
 | |
| 	    <TextView
 | |
| 	        android:id="@+id/conversation_name"
 | |
| 	        android:layout_width="wrap_content"
 | |
| 	        android:layout_height="wrap_content"
 | |
| 	        android:layout_alignLeft="@+id/conversation_lastwrapper"
 | |
| 	        android:layout_toLeftOf="@+id/conversation_lastupdate"
 | |
| 	        android:singleLine="true"
 | |
| 	        android:textColor="#636363"
 | |
| 	        android:textSize="20sp"
 | |
| 	        android:typeface="sans" />
 | |
| 	 
 | |
| 	    <LinearLayout
 | |
| 	        android:orientation="vertical"
 | |
| 	        android:id="@+id/conversation_lastwrapper"
 | |
| 	        android:layout_width="fill_parent"
 | |
| 	        android:layout_height="wrap_content"
 | |
| 	        android:layout_below="@id/conversation_name"
 | |
| 	        android:paddingTop="3dp"
 | |
| 	        >
 | |
| 	    <TextView
 | |
| 	        android:id="@+id/conversation_lastmsg"
 | |
| 	        android:layout_width="fill_parent"
 | |
| 	        android:layout_height="wrap_content"
 | |
| 	        
 | |
| 	        android:textColor="#636363"
 | |
| 	        android:textSize="14sp"
 | |
| 	        android:singleLine="true"
 | |
| 	        android:scrollHorizontally="false"
 | |
| 	        />
 | |
| 	    
 | |
| 	    <ImageView
 | |
| 	        android:id="@+id/conversation_lastimage"
 | |
| 	        android:layout_width="fill_parent"
 | |
| 	        android:layout_height="36dp"
 | |
| 	        android:background="#333333"
 | |
| 	        android:scaleType="centerCrop" />
 | |
| 
 | |
| 	</LinearLayout>
 | |
| 	    <TextView
 | |
| 	        android:id="@+id/conversation_lastupdate"
 | |
| 	        android:layout_width="wrap_content"
 | |
| 	        android:layout_height="wrap_content"
 | |
| 	        android:layout_alignBaseline="@+id/conversation_name"
 | |
| 	        android:layout_alignParentRight="true"
 | |
| 	        android:gravity="right"
 | |
| 	        android:textColor="#636363"
 | |
| 	        android:textSize="12sp" />
 | |
| 
 | |
|  	</RelativeLayout>
 | |
|  
 | |
|  
 | |
| </RelativeLayout> | 
