From 8627256f12b5c390ee5963d7d3c73c0605db28d7 Mon Sep 17 00:00:00 2001 From: Leland Miller Date: Thu, 8 Aug 2019 10:16:31 -0700 Subject: [PATCH] Fix incorrect descriptions under SMS contract Fixes: 117203793 Test: N/A, only modifies documentation Change-Id: I5c4bc23e41bc0d1c97bccf7e288c4c41d8e1a438 --- telephony/java/android/provider/Telephony.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/telephony/java/android/provider/Telephony.java b/telephony/java/android/provider/Telephony.java index 094f8c2eb053f..ef85f8a609e01 100644 --- a/telephony/java/android/provider/Telephony.java +++ b/telephony/java/android/provider/Telephony.java @@ -629,7 +629,7 @@ public final class Telephony { } /** - * Contains all sent text-based SMS messages in the SMS app. + * Contains all draft text-based SMS messages in the SMS app. */ public static final class Draft implements BaseColumns, TextBasedSmsColumns { @@ -745,7 +745,15 @@ public final class Telephony { } /** - * Contains all sent text-based SMS messages in the SMS app. + * Contains a view of SMS conversations (also referred to as threads). This is similar to + * {@link Threads}, but only includes SMS messages and columns relevant to SMS + * conversations. + *

+ * Note that this view ignores any information about MMS messages, it is a + * view of conversations as if MMS messages did not exist at all. This means that all + * relevant information, such as snippets and message count, will ignore any MMS messages + * that might be in the same thread through other views and present only data based on the + * SMS messages in that thread. */ public static final class Conversations implements BaseColumns, TextBasedSmsColumns {