2018-11-09 07:33:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/album_thumbnail_root"
|
2019-01-16 07:57:43 +00:00
|
|
|
android:layout_width="@dimen/album_total_width"
|
|
|
|
android:layout_height="@dimen/album_4_total_height">
|
2018-11-09 07:33:37 +00:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/album_cell_1"
|
2019-01-16 07:57:43 +00:00
|
|
|
android:layout_width="@dimen/album_4_cell_size"
|
|
|
|
android:layout_height="@dimen/album_4_cell_size"
|
2018-11-09 07:33:37 +00:00
|
|
|
app:thumbnail_radius="0dp"/>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/album_cell_2"
|
2019-01-16 07:57:43 +00:00
|
|
|
android:layout_width="@dimen/album_4_cell_size"
|
|
|
|
android:layout_height="@dimen/album_4_cell_size"
|
2018-11-09 07:33:37 +00:00
|
|
|
android:layout_gravity="right|end|top"
|
|
|
|
app:thumbnail_radius="0dp"/>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/album_cell_3"
|
2019-01-16 07:57:43 +00:00
|
|
|
android:layout_width="@dimen/album_4_cell_size"
|
|
|
|
android:layout_height="@dimen/album_4_cell_size"
|
2018-11-09 07:33:37 +00:00
|
|
|
android:layout_gravity="left|start|bottom"
|
|
|
|
app:thumbnail_radius="0dp"/>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/album_cell_4"
|
2019-01-16 07:57:43 +00:00
|
|
|
android:layout_width="@dimen/album_4_cell_size"
|
|
|
|
android:layout_height="@dimen/album_4_cell_size"
|
2018-11-09 07:33:37 +00:00
|
|
|
android:layout_gravity="right|end|bottom"
|
|
|
|
app:thumbnail_radius="0dp"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|