1 <?xml version="1.0" encoding="utf-8"?> |
1 <?xml version="1.0" encoding="utf-8"?> |
2 <LinearLayout 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" |
4 android:layout_width="fill_parent" |
4 android:layout_width="fill_parent" |
5 android:layout_height="wrap_content" |
5 android:layout_height="wrap_content" |
6 > |
6 > |
7 |
7 |
8 <TextView android:id="@+id/chatmessagename" |
8 <TextView android:id="@+id/chatmessagename" |
9 android:layout_width="fill_parent" |
9 android:layout_width="fill_parent" |
10 android:layout_height="wrap_content" |
10 android:layout_height="wrap_content" |
|
11 android:layout_alignParentLeft="true" |
|
12 android:layout_alignParentTop="true" |
11 android:textSize="16sp" |
13 android:textSize="16sp" |
12 android:textColor="#FFFFFF" |
14 android:textColor="#FFFFFF" |
13 android:textStyle="bold" |
15 android:textStyle="bold" |
14 android:paddingBottom="1dp" |
16 android:paddingBottom="1dp" |
15 /> |
17 /> |
16 <TextView android:id="@+id/chatmessagetext" |
18 <TextView android:id="@+id/chatmessagedate" |
17 android:layout_width="fill_parent" |
19 android:layout_width="wrap_content" |
18 android:layout_height="wrap_content" |
20 android:layout_height="wrap_content" |
|
21 android:layout_alignParentTop="true" |
|
22 android:layout_alignParentRight="true" |
19 android:autoLink="all" |
23 android:autoLink="all" |
20 /> |
24 /> |
21 </LinearLayout> |
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 /> |
22 |
32 |
|
33 |
|
34 </RelativeLayout> |
|
35 |