message_date_bubble.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3    android:layout_width="fill_parent"
 4    android:layout_height="wrap_content"
 5    android:orientation="vertical"
 6    android:paddingBottom="5dp"
 7    android:paddingLeft="8dp"
 8    android:paddingRight="8dp"
 9    android:paddingTop="5dp">
10
11    <LinearLayout
12        android:layout_width="wrap_content"
13        android:layout_height="wrap_content"
14        android:background="@drawable/date_bubble_white"
15        android:id="@+id/message_box"
16        android:layout_centerHorizontal="true">
17        <TextView
18            android:layout_width="wrap_content"
19            android:layout_height="wrap_content"
20            android:textColorLink="@color/black87"
21            android:textColor="?attr/color_text_secondary"
22            android:textSize="?attr/TextSizeBody"
23            android:id="@+id/message_body" />
24    </LinearLayout>
25
26</RelativeLayout>