equal
deleted
inserted
replaced
|
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 |