show an avatar at the incoming messages

This commit is contained in:
tibbi 2020-04-11 22:44:02 +02:00
parent 6ef4a3b23a
commit 7f441218d2
3 changed files with 47 additions and 8 deletions

View file

@ -4,7 +4,7 @@ import android.provider.Telephony
data class Message(
val id: Int, val body: String, val type: Int, val participants: ArrayList<Contact>, val date: Int, val read: Boolean, val thread: Int,
val isMMS: Boolean, val attachment: MessageAttachment?
val isMMS: Boolean, val attachment: MessageAttachment?, val senderName: String, val senderPhotoUri: String
) : ThreadItem() {
fun isReceivedMessage() = type == Telephony.Sms.MESSAGE_TYPE_INBOX
}