mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
|
<?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"
|
||
|
android:layout_width="300dp"
|
||
|
android:layout_height="300dp">
|
||
|
|
||
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
||
|
android:id="@+id/album_cell_1"
|
||
|
android:layout_height="149dp"
|
||
|
android:layout_width="149dp"
|
||
|
app:thumbnail_radius="0dp"/>
|
||
|
|
||
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
||
|
android:id="@+id/album_cell_2"
|
||
|
android:layout_height="149dp"
|
||
|
android:layout_width="149dp"
|
||
|
android:layout_gravity="right|end|top"
|
||
|
app:thumbnail_radius="0dp"/>
|
||
|
|
||
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
||
|
android:id="@+id/album_cell_3"
|
||
|
android:layout_height="149dp"
|
||
|
android:layout_width="149dp"
|
||
|
android:layout_gravity="left|start|bottom"
|
||
|
app:thumbnail_radius="0dp"/>
|
||
|
|
||
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
||
|
android:id="@+id/album_cell_4"
|
||
|
android:layout_height="149dp"
|
||
|
android:layout_width="149dp"
|
||
|
android:layout_gravity="right|end|bottom"
|
||
|
app:thumbnail_radius="0dp"/>
|
||
|
|
||
|
</FrameLayout>
|