2017-09-25 15:32:45 +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="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.DocumentView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/document_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:visibility="visible"
|
2018-09-08 15:23:33 +00:00
|
|
|
app:doc_titleColor="?media_overview_document_primary"
|
|
|
|
app:doc_captionColor="?media_overview_document_secondary"
|
2017-09-25 15:32:45 +00:00
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/date"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:textSize="12sp"
|
2018-09-08 15:23:33 +00:00
|
|
|
android:textColor="?media_overview_document_secondary"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:paddingTop="20dp"
|
|
|
|
tools:text="Jun 1"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|