show video MMS attachments too

This commit is contained in:
tibbi 2020-04-09 13:41:51 +02:00
parent 0749c0bb9d
commit 0984449a76
2 changed files with 5 additions and 4 deletions

View File

@ -172,7 +172,8 @@ class ThreadAdapter(
}
if (message.attachment != null) {
if (message.attachment.type.startsWith("image/")) {
val type = message.attachment.type
if (type.startsWith("image/") || type.startsWith("video/")) {
val uri = message.attachment.uri
val options = RequestOptions()
.diskCacheStrategy(DiskCacheStrategy.NONE)
@ -187,7 +188,7 @@ class ThreadAdapter(
thread_message_image.setOnClickListener {
Intent().apply {
action = Intent.ACTION_VIEW
setDataAndType(uri, "image/jpeg")
setDataAndType(uri, type)
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
activity.startActivity(this)
}

View File

@ -18,8 +18,8 @@ import com.simplemobiletools.commons.helpers.isMarshmallowPlus
import com.simplemobiletools.commons.helpers.isQPlus
import com.simplemobiletools.smsmessenger.helpers.Config
import com.simplemobiletools.smsmessenger.models.Contact
import com.simplemobiletools.smsmessenger.models.MessageAttachment
import com.simplemobiletools.smsmessenger.models.Message
import com.simplemobiletools.smsmessenger.models.MessageAttachment
import java.util.*
import kotlin.collections.ArrayList
@ -135,7 +135,7 @@ fun Context.getMmsAttachment(id: Int): MessageAttachment? {
val type = cursor.getStringValue(Mms.Part.CONTENT_TYPE)
if (type == "text/plain") {
attachment.text = cursor.getStringValue(Mms.Part.TEXT) ?: ""
} else if (type.startsWith("image/")) {
} else if (type.startsWith("image/") || type.startsWith("video/")) {
attachment.uri = Uri.withAppendedPath(uri, partId)
attachment.type = type
}