res/layout/chat_msg_row.xml
changeset 653 e94abef6120c
child 772 d1db49d18275
equal deleted inserted replaced
652:2e313f61c7e7 653:e94abef6120c
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3     android:orientation="vertical"
       
     4     android:layout_width="fill_parent" 
       
     5     android:layout_height="wrap_content"
       
     6     >
       
     7 
       
     8     <TextView android:id="@+id/chatmessagename"
       
     9 	android:layout_width="fill_parent"
       
    10 	android:layout_height="wrap_content"
       
    11 	android:textSize="16sp"
       
    12 	android:textColor="#FFFFFF"
       
    13 	android:textStyle="bold"
       
    14 	android:paddingBottom="1dp"
       
    15 	/>
       
    16     <TextView android:id="@+id/chatmessagetext"
       
    17 	android:layout_width="fill_parent"
       
    18 	android:layout_height="wrap_content"
       
    19 	android:autoLink="all"
       
    20 	/>
       
    21 </LinearLayout>
       
    22