2015-01-18 16:11:30 -10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-12-03 11:05:03 -05:00
|
|
|
<org.thoughtcrime.securesms.components.SquareFrameLayout 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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/image"
|
2015-01-18 16:11:30 -10:00
|
|
|
android:layout_width="match_parent"
|
2017-09-23 21:30:00 -07:00
|
|
|
android:layout_height="match_parent"
|
2019-12-03 11:05:03 -05:00
|
|
|
android:contentDescription="@string/media_preview_activity__media_content_description"
|
|
|
|
android:padding="2dp" />
|
2015-01-18 16:11:30 -10:00
|
|
|
|
2019-12-03 11:05:03 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/image_file_size"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:background="@drawable/media_overview_size_pill_background"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="6dp"
|
|
|
|
android:paddingEnd="6dp"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="1.3 MB"
|
|
|
|
tools:visibility="visible" />
|
2015-01-18 16:11:30 -10:00
|
|
|
|
2018-03-15 11:17:40 -07:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/selected_indicator"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/MediaOverview_Media_selected_overlay"
|
2019-12-03 11:05:03 -05:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:showIn="@layout/media_overview_gallery_item"
|
|
|
|
tools:visibility="visible">
|
2018-03-15 11:17:40 -07:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-03 11:05:03 -05:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:contentDescription="@string/MediaOverviewActivity_Selected_description"
|
|
|
|
app:srcCompat="@drawable/ic_check_circle_solid_20" />
|
|
|
|
|
2018-03-15 11:17:40 -07:00
|
|
|
</FrameLayout>
|
|
|
|
|
2015-06-26 20:14:51 -07:00
|
|
|
</org.thoughtcrime.securesms.components.SquareFrameLayout>
|