author | Nikita Kozlov <nikita@beem-project.com> |
Sun, 16 Jan 2011 12:01:15 +0100 | |
changeset 853 | ddaa0b718f2a |
parent 836 | ac719bcb0f25 |
permissions | -rw-r--r-- |
836
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
3 |
android:orientation="vertical" android:layout_width="fill_parent" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
4 |
android:layout_height="wrap_content"> |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
5 |
<TextView android:id="@+id/chatmessagedate" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
6 |
android:layout_width="wrap_content" android:layout_height="wrap_content" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
7 |
android:autoLink="none" android:layout_marginRight="4dp" /> |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
8 |
<TextView android:id="@+id/chatmessagename" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
9 |
android:layout_width="wrap_content" android:layout_height="wrap_content" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
10 |
android:textSize="14sp" android:textColor="#FFFFFF" android:textStyle="bold" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
11 |
android:layout_toRightOf="@id/chatmessagedate" android:layout_marginRight="4dp" /> |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
12 |
<TextView android:id="@+id/chatmessagetext" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
13 |
android:layout_width="wrap_content" android:layout_height="wrap_content" |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
14 |
android:layout_toRightOf="@id/chatmessagename" android:autoLink="all" /> |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
15 |
</RelativeLayout> |
ac719bcb0f25
Compact Chat window support + options in settings
"Vincent Veronis"
parents:
diff
changeset
|
16 |