habitica-android/Habitica/res/layout/system_chat_message.xml

34 lines
1.3 KiB
XML
Raw Normal View History

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"
2021-02-05 11:29:58 +00:00
android:background="@color/content_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"/>
2021-02-09 08:06:56 +00:00
<TextView
android:id="@+id/system_message_timestamp"
2021-02-09 09:15:23 +00:00
android:visibility="gone"
2021-02-09 08:06:56 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:singleLine="true"
android:lines="1"
android:ellipsize="end"
tools:text="Apr 20, 2:32 PM"
android:textSize="12sp"
android:textColor="@color/text_quad"/>
2018-08-07 16:21:18 +00:00
</LinearLayout>