equal
deleted
inserted
replaced
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 |
|
6 <TextView android:id="@+id/chatmessagename" |
|
7 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
8 android:layout_alignParentLeft="true" android:layout_alignParentTop="true" |
|
9 android:textColor="@android:color/white" android:textStyle="bold" |
|
10 android:textAppearance="?android:attr/textAppearanceMedium" |
|
11 android:paddingBottom="1dp" /> |
|
12 <TextView android:id="@+id/chatmessagedate" |
|
13 android:layout_width="wrap_content" android:layout_height="wrap_content" |
|
14 android:layout_alignParentTop="true" android:layout_alignParentRight="true" |
|
15 android:autoLink="none" /> |
|
16 <TextView android:id="@+id/chatmessagetext" |
|
17 android:layout_width="wrap_content" android:layout_height="wrap_content" |
|
18 android:layout_alignParentLeft="true" android:layout_below="@id/chatmessagename" |
|
19 android:autoLink="all" /> |
|
20 </RelativeLayout> |
|
21 |
|