92 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="fill_parent"
 | |
|     android:layout_height="wrap_content"
 | |
|     android:orientation="vertical"
 | |
|     android:padding="8dp" >
 | |
| 
 | |
|     <LinearLayout
 | |
|         android:id="@+id/linearLayout1"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_alignParentBottom="true"
 | |
|         android:layout_toRightOf="@+id/message_photo"
 | |
|         android:background="@drawable/message_border"
 | |
|         android:minHeight="48dp" >
 | |
| 
 | |
|         <LinearLayout
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="fill_parent"
 | |
|             android:background="#ededed"
 | |
|             android:orientation="vertical"
 | |
|             android:padding="5dp" >
 | |
| 
 | |
|             <ImageView 
 | |
|                 android:id="@+id/message_image"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:adjustViewBounds="true"
 | |
|                 android:paddingBottom="2dp"
 | |
|                 android:scaleType="fitXY"
 | |
|                 android:background="#333333"
 | |
|                 />
 | |
|             
 | |
|             <TextView
 | |
|                 android:id="@+id/message_body"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:autoLink="web"
 | |
|                 android:textIsSelectable="true"
 | |
|                 android:textColor="#333333"
 | |
|                 android:textSize="16sp"/>
 | |
| 
 | |
|             <Button
 | |
|                 android:id="@+id/download_button"
 | |
|                 style="?android:attr/buttonStyleSmall"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:text="@string/download_image"
 | |
|                 android:visibility="gone"/>
 | |
| 
 | |
|            <LinearLayout
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:orientation="horizontal" >
 | |
| 
 | |
|                 <ImageView
 | |
|                     android:id="@+id/security_indicator"
 | |
|                     android:layout_width="12sp"
 | |
|                     android:layout_height="12sp"
 | |
|                     android:layout_gravity="center_vertical"
 | |
|                     android:gravity="center_vertical"
 | |
|                     android:layout_marginTop="2sp"
 | |
|                     android:src="@drawable/ic_indicator"
 | |
|                     android:layout_marginRight="6sp"/>
 | |
| 
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/message_time"
 | |
|                     android:layout_width="wrap_content"
 | |
|                     android:layout_height="wrap_content"
 | |
|                     android:layout_gravity="center_vertical"
 | |
|                     android:gravity="center_vertical"
 | |
|                     android:paddingTop="1dp"
 | |
|                     android:text="@string/sending"
 | |
|                     android:textColor="#8e8e8e"
 | |
|                     android:textSize="12sp" />
 | |
|             </LinearLayout>
 | |
|         </LinearLayout>
 | |
|     </LinearLayout>
 | |
| 
 | |
|     <ImageView
 | |
|         android:id="@+id/message_photo"
 | |
|         android:layout_width="48dp"
 | |
|         android:layout_height="48dp"
 | |
|         android:layout_alignParentLeft="true"
 | |
|         android:layout_alignParentTop="true"
 | |
|         android:layout_marginRight="-1.5dp"
 | |
|         android:padding="0dp"
 | |
|         android:scaleType="fitXY"
 | |
|         android:src="@drawable/ic_profile" />
 | |
| 
 | |
| </RelativeLayout> | 
