session-android/res/layout/conversation_item_header.xml

23 lines
720 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2018-07-12 23:03:32 +00:00
<LinearLayout
2018-06-26 17:27:44 +00:00
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-07-12 23:03:32 +00:00
android:orientation="vertical"
android:paddingTop="12dp"
android:paddingBottom="13dp"
android:paddingStart="28dp"
android:paddingEnd="28dp">
2018-07-12 23:03:32 +00:00
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
2020-01-13 05:47:50 +00:00
android:textColor="#99FFFFFF"
android:textSize="@dimen/small_font_size"
2018-07-12 23:03:32 +00:00
tools:text="March 1, 2015" />
</LinearLayout>