1
0
mirror of https://github.com/ultrasonic/ultrasonic synced 2025-02-03 02:27:31 +01:00
2013-05-21 22:47:40 -07:00

48 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="fill_parent"
a:layout_height="wrap_content"
a:orientation="vertical" >
<TextView
a:id="@+id/chat_username"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
a:layout_marginLeft="6dip"
a:layout_marginRight="6dip"
a:ellipsize="marquee"
a:singleLine="true"
a:text="User"
a:textAppearance="?android:attr/textAppearanceMedium"
a:textStyle="bold" />
<LinearLayout
a:id="@+id/chat_message_layout"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
a:layout_marginTop="2dip"
a:orientation="horizontal" >
<TextView
a:id="@+id/chat_time"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
a:layout_marginLeft="6dip"
a:singleLine="true"
a:text="00:00"
a:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
a:id="@+id/chat_message"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
a:layout_marginLeft="6dip"
a:layout_marginRight="6dip"
a:autoLink="all"
a:linksClickable="true"
a:singleLine="false"
a:text="Message Text Goes Here"
a:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
</LinearLayout>