2018-08-07 16:21:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingLeft="55dp"
|
|
|
|
|
android:paddingRight="@dimen/chat_horizontal_inset"
|
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
|
android:paddingBottom="4dp"
|
2018-08-09 12:37:53 +00:00
|
|
|
android:background="@color/gray_700">
|
2018-08-07 16:21:18 +00:00
|
|
|
<TextView
|
|
|
|
|
android:background="@drawable/system_chat_background"
|
|
|
|
|
android:id="@+id/text_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:padding="@dimen/spacing_large"
|
|
|
|
|
android:textColor="@color/brand_300"
|
|
|
|
|
tools:text="System message"
|
|
|
|
|
style="@style/Body1"/>
|
|
|
|
|
</LinearLayout>
|