mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-06 05:25:39 +00:00
refactor: move new thumbnailview to utilities package
This commit is contained in:
parent
277c741851
commit
110391c2cd
@ -1,4 +1,4 @@
|
|||||||
package org.thoughtcrime.securesms.components.v2
|
package org.thoughtcrime.securesms.conversation.v2.utilities
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
@ -1,4 +1,4 @@
|
|||||||
package org.thoughtcrime.securesms.components.v2
|
package org.thoughtcrime.securesms.conversation.v2
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.graphics.Canvas
|
import android.graphics.Canvas
|
||||||
@ -9,6 +9,7 @@ import android.widget.FrameLayout
|
|||||||
import kotlinx.android.synthetic.main.album_thumbnail_view.view.*
|
import kotlinx.android.synthetic.main.album_thumbnail_view.view.*
|
||||||
import network.loki.messenger.R
|
import network.loki.messenger.R
|
||||||
import org.thoughtcrime.securesms.components.CornerMask
|
import org.thoughtcrime.securesms.components.CornerMask
|
||||||
|
import org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
import org.thoughtcrime.securesms.database.model.MmsMessageRecord
|
import org.thoughtcrime.securesms.database.model.MmsMessageRecord
|
||||||
import org.thoughtcrime.securesms.mms.GlideRequests
|
import org.thoughtcrime.securesms.mms.GlideRequests
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package org.thoughtcrime.securesms.components.v2
|
package org.thoughtcrime.securesms.conversation.v2.utilities
|
||||||
|
|
||||||
class ThumbnailDimensDelegate {
|
class ThumbnailDimensDelegate {
|
||||||
|
|
@ -6,7 +6,7 @@
|
|||||||
android:layout_width="@dimen/media_bubble_default_dimens"
|
android:layout_width="@dimen/media_bubble_default_dimens"
|
||||||
android:layout_height="@dimen/media_bubble_default_dimens">
|
android:layout_height="@dimen/media_bubble_default_dimens">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_1"
|
android:id="@+id/album_cell_1"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
@ -7,13 +7,13 @@
|
|||||||
android:layout_width="@dimen/album_total_width"
|
android:layout_width="@dimen/album_total_width"
|
||||||
android:layout_height="@dimen/album_2_total_height">
|
android:layout_height="@dimen/album_2_total_height">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_1"
|
android:id="@+id/album_cell_1"
|
||||||
android:layout_width="@dimen/album_2_cell_width"
|
android:layout_width="@dimen/album_2_cell_width"
|
||||||
android:layout_height="@dimen/album_2_total_height"
|
android:layout_height="@dimen/album_2_total_height"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_2"
|
android:id="@+id/album_cell_2"
|
||||||
android:layout_width="@dimen/album_2_cell_width"
|
android:layout_width="@dimen/album_2_cell_width"
|
||||||
android:layout_height="@dimen/album_2_total_height"
|
android:layout_height="@dimen/album_2_total_height"
|
||||||
|
@ -6,20 +6,20 @@
|
|||||||
android:layout_width="@dimen/album_total_width"
|
android:layout_width="@dimen/album_total_width"
|
||||||
android:layout_height="@dimen/album_3_total_height">
|
android:layout_height="@dimen/album_3_total_height">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_1"
|
android:id="@+id/album_cell_1"
|
||||||
android:layout_width="@dimen/album_3_cell_width_big"
|
android:layout_width="@dimen/album_3_cell_width_big"
|
||||||
android:layout_height="@dimen/album_3_total_height"
|
android:layout_height="@dimen/album_3_total_height"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_2"
|
android:id="@+id/album_cell_2"
|
||||||
android:layout_width="@dimen/album_3_cell_size_small"
|
android:layout_width="@dimen/album_3_cell_size_small"
|
||||||
android:layout_height="@dimen/album_3_cell_size_small"
|
android:layout_height="@dimen/album_3_cell_size_small"
|
||||||
android:layout_gravity="right|end|top"
|
android:layout_gravity="right|end|top"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_3"
|
android:id="@+id/album_cell_3"
|
||||||
android:layout_width="@dimen/album_3_cell_size_small"
|
android:layout_width="@dimen/album_3_cell_size_small"
|
||||||
android:layout_height="@dimen/album_3_cell_size_small"
|
android:layout_height="@dimen/album_3_cell_size_small"
|
||||||
|
@ -6,27 +6,27 @@
|
|||||||
android:layout_width="@dimen/album_total_width"
|
android:layout_width="@dimen/album_total_width"
|
||||||
android:layout_height="@dimen/album_4_total_height">
|
android:layout_height="@dimen/album_4_total_height">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_1"
|
android:id="@+id/album_cell_1"
|
||||||
android:layout_width="@dimen/album_4_cell_size"
|
android:layout_width="@dimen/album_4_cell_size"
|
||||||
android:layout_height="@dimen/album_4_cell_size"
|
android:layout_height="@dimen/album_4_cell_size"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_2"
|
android:id="@+id/album_cell_2"
|
||||||
android:layout_width="@dimen/album_4_cell_size"
|
android:layout_width="@dimen/album_4_cell_size"
|
||||||
android:layout_height="@dimen/album_4_cell_size"
|
android:layout_height="@dimen/album_4_cell_size"
|
||||||
android:layout_gravity="right|end|top"
|
android:layout_gravity="right|end|top"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_3"
|
android:id="@+id/album_cell_3"
|
||||||
android:layout_width="@dimen/album_4_cell_size"
|
android:layout_width="@dimen/album_4_cell_size"
|
||||||
android:layout_height="@dimen/album_4_cell_size"
|
android:layout_height="@dimen/album_4_cell_size"
|
||||||
android:layout_gravity="left|start|bottom"
|
android:layout_gravity="left|start|bottom"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_4"
|
android:id="@+id/album_cell_4"
|
||||||
android:layout_width="@dimen/album_4_cell_size"
|
android:layout_width="@dimen/album_4_cell_size"
|
||||||
android:layout_height="@dimen/album_4_cell_size"
|
android:layout_height="@dimen/album_4_cell_size"
|
||||||
|
@ -6,34 +6,34 @@
|
|||||||
android:layout_width="@dimen/album_total_width"
|
android:layout_width="@dimen/album_total_width"
|
||||||
android:layout_height="@dimen/album_5_total_height">
|
android:layout_height="@dimen/album_5_total_height">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_1"
|
android:id="@+id/album_cell_1"
|
||||||
android:layout_width="@dimen/album_5_cell_size_big"
|
android:layout_width="@dimen/album_5_cell_size_big"
|
||||||
android:layout_height="@dimen/album_5_cell_size_big"
|
android:layout_height="@dimen/album_5_cell_size_big"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_2"
|
android:id="@+id/album_cell_2"
|
||||||
android:layout_width="@dimen/album_5_cell_size_big"
|
android:layout_width="@dimen/album_5_cell_size_big"
|
||||||
android:layout_height="@dimen/album_5_cell_size_big"
|
android:layout_height="@dimen/album_5_cell_size_big"
|
||||||
android:layout_gravity="right|end|top"
|
android:layout_gravity="right|end|top"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_3"
|
android:id="@+id/album_cell_3"
|
||||||
android:layout_width="@dimen/album_5_cell_size_small"
|
android:layout_width="@dimen/album_5_cell_size_small"
|
||||||
android:layout_height="@dimen/album_5_cell_size_small"
|
android:layout_height="@dimen/album_5_cell_size_small"
|
||||||
android:layout_gravity="left|start|bottom"
|
android:layout_gravity="left|start|bottom"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_4"
|
android:id="@+id/album_cell_4"
|
||||||
android:layout_width="@dimen/album_5_cell_size_small"
|
android:layout_width="@dimen/album_5_cell_size_small"
|
||||||
android:layout_height="@dimen/album_5_cell_size_small"
|
android:layout_height="@dimen/album_5_cell_size_small"
|
||||||
android:layout_gravity="center_horizontal|bottom"
|
android:layout_gravity="center_horizontal|bottom"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_5"
|
android:id="@+id/album_cell_5"
|
||||||
android:layout_width="@dimen/album_5_cell_size_small"
|
android:layout_width="@dimen/album_5_cell_size_small"
|
||||||
android:layout_height="@dimen/album_5_cell_size_small"
|
android:layout_height="@dimen/album_5_cell_size_small"
|
||||||
|
@ -7,27 +7,27 @@
|
|||||||
android:layout_width="@dimen/album_total_width"
|
android:layout_width="@dimen/album_total_width"
|
||||||
android:layout_height="@dimen/album_5_total_height">
|
android:layout_height="@dimen/album_5_total_height">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_1"
|
android:id="@+id/album_cell_1"
|
||||||
android:layout_width="@dimen/album_5_cell_size_big"
|
android:layout_width="@dimen/album_5_cell_size_big"
|
||||||
android:layout_height="@dimen/album_5_cell_size_big"
|
android:layout_height="@dimen/album_5_cell_size_big"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_2"
|
android:id="@+id/album_cell_2"
|
||||||
android:layout_width="@dimen/album_5_cell_size_big"
|
android:layout_width="@dimen/album_5_cell_size_big"
|
||||||
android:layout_height="@dimen/album_5_cell_size_big"
|
android:layout_height="@dimen/album_5_cell_size_big"
|
||||||
android:layout_gravity="right|end|top"
|
android:layout_gravity="right|end|top"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_3"
|
android:id="@+id/album_cell_3"
|
||||||
android:layout_width="@dimen/album_5_cell_size_small"
|
android:layout_width="@dimen/album_5_cell_size_small"
|
||||||
android:layout_height="@dimen/album_5_cell_size_small"
|
android:layout_height="@dimen/album_5_cell_size_small"
|
||||||
android:layout_gravity="left|start|bottom"
|
android:layout_gravity="left|start|bottom"
|
||||||
app:thumbnail_radius="0dp"/>
|
app:thumbnail_radius="0dp"/>
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_4"
|
android:id="@+id/album_cell_4"
|
||||||
android:layout_width="@dimen/album_5_cell_size_small"
|
android:layout_width="@dimen/album_5_cell_size_small"
|
||||||
android:layout_height="@dimen/album_5_cell_size_small"
|
android:layout_height="@dimen/album_5_cell_size_small"
|
||||||
@ -39,7 +39,7 @@
|
|||||||
android:layout_height="@dimen/album_5_cell_size_small"
|
android:layout_height="@dimen/album_5_cell_size_small"
|
||||||
android:layout_gravity="right|end|bottom">
|
android:layout_gravity="right|end|bottom">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.v2.ThumbnailView
|
<org.thoughtcrime.securesms.conversation.v2.utilities.ThumbnailView
|
||||||
android:id="@+id/album_cell_5"
|
android:id="@+id/album_cell_5"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user