res/layout/chat_msg_row_compact.xml
author "Vincent Veronis"
Mon, 27 Dec 2010 01:20:24 +0100
changeset 826 ac719bcb0f25
permissions -rw-r--r--
Compact Chat window support + options in settings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
826
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