res/layout/chat_msg_row.xml
author nikita@nikita-laptop
Thu, 18 Feb 2010 02:02:30 +0100
changeset 679 47cd386089b3
parent 653 e94abef6120c
child 772 d1db49d18275
permissions -rw-r--r--
use the settings_away_chk pref at startup, i need to add a listener for runtime now

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    >

    <TextView android:id="@+id/chatmessagename"
	android:layout_width="fill_parent"
	android:layout_height="wrap_content"
	android:textSize="16sp"
	android:textColor="#FFFFFF"
	android:textStyle="bold"
	android:paddingBottom="1dp"
	/>
    <TextView android:id="@+id/chatmessagetext"
	android:layout_width="fill_parent"
	android:layout_height="wrap_content"
	android:autoLink="all"
	/>
</LinearLayout>