summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Leland Miller <lelandmiller@google.com> 2019-08-19 08:45:32 -0700
committer android-build-merger <android-build-merger@google.com> 2019-08-19 08:45:32 -0700
commit7e98e3fe48041d1175b4ea56a154e76b28f2d5d2 (patch)
tree4f37869296844066f1d5fd7c9b4456f534103fde
parentc6958aa69d9f8ba4531bb1e6cec89004c21d6eed (diff)
parentb6d51f117b73ebc177ce8df69afdf7e43ce86089 (diff)
Merge "Fix incorrect descriptions under SMS contract" am: 8f48cb7e7e am: 6ef5b6c183 am: 4e16f07ddf am: ecd1d67584
am: b6d51f117b Change-Id: I7ca8d0dd5068f190cda7f4ccb85110b6b74f51b8
-rw-r--r--telephony/java/android/provider/Telephony.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/telephony/java/android/provider/Telephony.java b/telephony/java/android/provider/Telephony.java
index 43fb304e8fb6..42a5501cc229 100644
--- a/telephony/java/android/provider/Telephony.java
+++ b/telephony/java/android/provider/Telephony.java
@@ -692,7 +692,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 {
@@ -808,7 +808,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.
+ * <p>
+ * 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 {