aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/message_date_bubble.xml
blob: 19183e0c7627f47d07c9b1a12f66ebf2c9491cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingStart="8dp"
    android:paddingLeft="8dp"
    android:paddingTop="5dp"
    android:paddingEnd="8dp"
    android:paddingRight="8dp"
    android:paddingBottom="5dp">

    <LinearLayout
        android:id="@+id/message_box"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_margin="8dp"
        android:background="@drawable/date_bubble"
        android:padding="4dp">

        <TextView
            android:id="@+id/status_message"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="01.01.2017"
            android:textAppearance="@style/TextAppearance.Conversations.Body1.Secondary"
            android:textStyle="italic" />
    </LinearLayout>

</RelativeLayout>