res/layout/chat_msg_row_compact.xml
author Nikita Kozlov <nikita@beem-project.com>
Sun, 16 Jan 2011 12:44:59 +0100
changeset 844 30d32b73be7c
parent 826 ac719bcb0f25
permissions -rw-r--r--
fix Bug #321 I have commented the PrivacyListManagerAdapter initialization because the exception came from the underneath code. Also, since the feature isn't finished (especially tested) and enabled in the gui, it will be safer.
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