2013-05-22 07:47:40 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-01-29 08:47:56 +01:00
|
|
|
<RelativeLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:orientation="horizontal">
|
2013-05-22 07:47:40 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-01-29 08:47:56 +01:00
|
|
|
a:layout_width="fill_parent"
|
2013-05-22 07:47:40 +02:00
|
|
|
a:layout_height="wrap_content"
|
2014-01-29 08:47:56 +01:00
|
|
|
a:orientation="vertical"
|
|
|
|
a:layout_gravity="right"
|
|
|
|
a:layout_alignParentEnd="false"
|
|
|
|
a:layout_toStartOf="@id/chat_avatar"
|
|
|
|
a:gravity="center_vertical|right">
|
2013-05-22 07:47:40 +02:00
|
|
|
|
|
|
|
<TextView
|
2014-01-29 08:47:56 +01:00
|
|
|
a:id="@+id/chat_username"
|
2013-05-22 07:47:40 +02:00
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
2014-01-29 08:47:56 +01:00
|
|
|
a:layout_marginRight="6dip"
|
|
|
|
a:gravity="center_vertical|right"
|
|
|
|
a:layout_gravity="right"
|
|
|
|
a:ellipsize="marquee"
|
2013-05-22 07:47:40 +02:00
|
|
|
a:singleLine="true"
|
2014-01-29 08:47:56 +01:00
|
|
|
a:textIsSelectable="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
a:textStyle="bold"/>
|
2013-05-22 07:47:40 +02:00
|
|
|
|
2014-01-29 08:47:56 +01:00
|
|
|
<LinearLayout
|
2013-05-22 07:47:40 +02:00
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
2014-01-29 08:47:56 +01:00
|
|
|
a:layout_marginTop="2dip"
|
|
|
|
a:orientation="horizontal"
|
|
|
|
a:layout_gravity="right|end"
|
|
|
|
a:gravity="center_vertical|right">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/chat_time"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_marginLeft="6dip"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:gravity="center_vertical|right"
|
|
|
|
a:textIsSelectable="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
a:layout_gravity="right"/>
|
|
|
|
|
|
|
|
<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:linksClickable="true"
|
|
|
|
a:singleLine="false"
|
|
|
|
a:autoLink="all"
|
|
|
|
a:textIsSelectable="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
a:gravity="center_vertical|right"
|
|
|
|
a:layout_gravity="right"/>
|
|
|
|
</LinearLayout>
|
2013-05-22 07:47:40 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-29 08:47:56 +01:00
|
|
|
<ImageView
|
|
|
|
a:layout_width="50dip"
|
|
|
|
a:layout_height="50dip"
|
|
|
|
a:id="@+id/chat_avatar"
|
|
|
|
a:layout_alignParentEnd="true"
|
|
|
|
a:layout_toStartOf="@id/chat_avatar"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|