res/layout/chat_msg_row.xml
changeset 798 6c924ac95f1c
parent 772 d1db49d18275
equal deleted inserted replaced
797:fbd3585af53e 798:6c924ac95f1c
     1 <?xml version="1.0" encoding="utf-8"?>
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:orientation="vertical"
     3 	android:orientation="vertical" android:layout_width="fill_parent"
     4     android:layout_width="fill_parent" 
     4 	android:layout_height="wrap_content">
     5     android:layout_height="wrap_content"
       
     6     >
       
     7 
     5 
     8     <TextView android:id="@+id/chatmessagename"
     6 	<TextView android:id="@+id/chatmessagename"
     9 	android:layout_width="fill_parent"
     7 		android:layout_width="fill_parent" android:layout_height="wrap_content"
    10 	android:layout_height="wrap_content"
     8 		android:layout_alignParentLeft="true" android:layout_alignParentTop="true"
    11 	android:layout_alignParentLeft="true"
     9 		android:textSize="16sp" android:textColor="#FFFFFF" android:textStyle="bold"
    12 	android:layout_alignParentTop="true"
    10 		android:paddingBottom="1dp" />
    13 	android:textSize="16sp"
    11 	<TextView android:id="@+id/chatmessagedate"
    14 	android:textColor="#FFFFFF"
    12 		android:layout_width="wrap_content" android:layout_height="wrap_content"
    15 	android:textStyle="bold"
    13 		android:layout_alignParentTop="true" android:layout_alignParentRight="true"
    16 	android:paddingBottom="1dp"
    14 		android:autoLink="none" />
    17 	/>
    15 	<TextView android:id="@+id/chatmessagetext"
    18     <TextView android:id="@+id/chatmessagedate"
    16 		android:layout_width="wrap_content" android:layout_height="wrap_content"
    19 	android:layout_width="wrap_content"
    17 		android:layout_alignParentLeft="true" android:layout_below="@id/chatmessagename"
    20 	android:layout_height="wrap_content"
    18 		android:autoLink="all" />
    21 	android:layout_alignParentTop="true"
       
    22 	android:layout_alignParentRight="true"
       
    23 	android:autoLink="all"
       
    24 	/>
       
    25     <TextView android:id="@+id/chatmessagetext"
       
    26 	android:layout_width="wrap_content"
       
    27 	android:layout_height="wrap_content"
       
    28 	android:layout_alignParentLeft="true"
       
    29 	android:layout_below="@id/chatmessagename"
       
    30 	android:autoLink="all"
       
    31 	/>
       
    32 
       
    33 
       
    34 </RelativeLayout>
    19 </RelativeLayout>
    35 
    20