res/layout/chat_msg_row_compact.xml
changeset 836 ac719bcb0f25
equal deleted inserted replaced
824:27a5b676b9f3 836:ac719bcb0f25
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3 	android:orientation="vertical" android:layout_width="fill_parent"
       
     4 	android:layout_height="wrap_content">
       
     5 	<TextView android:id="@+id/chatmessagedate"
       
     6 		android:layout_width="wrap_content" android:layout_height="wrap_content"
       
     7 		android:autoLink="none" android:layout_marginRight="4dp" />
       
     8 	<TextView android:id="@+id/chatmessagename"
       
     9 		android:layout_width="wrap_content" android:layout_height="wrap_content"
       
    10 		android:textSize="14sp" android:textColor="#FFFFFF" android:textStyle="bold"
       
    11 		android:layout_toRightOf="@id/chatmessagedate" android:layout_marginRight="4dp" />
       
    12 	<TextView android:id="@+id/chatmessagetext"
       
    13 		android:layout_width="wrap_content" android:layout_height="wrap_content"
       
    14 		android:layout_toRightOf="@id/chatmessagename" android:autoLink="all" />
       
    15 </RelativeLayout>
       
    16