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"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:paddingStart="55dp"
|
|
|
|
|
android:paddingEnd="@dimen/chat_horizontal_inset"
|
2018-08-07 16:21:18 +00:00
|
|
|
android:paddingTop="4dp"
|
|
|
|
|
android:paddingBottom="4dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/window_background">
|
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"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:textColor="@color/text_brand_neon"
|
2018-08-07 16:21:18 +00:00
|
|
|
tools:text="System message"
|
|
|
|
|
style="@style/Body1"/>
|
|
|
|
|
</LinearLayout>
|